Skip to content

Commit 3cb484c

Browse files
authored
Merge pull request #27 from AnimatedSwine37/main
Fixes
2 parents 454b958 + c0bc226 commit 3cb484c

26 files changed

+96
-220
lines changed

build.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@ if not exist "%OUTPUT_PATH%\tblpatches" mkdir "%OUTPUT_PATH%\tblpatches"
2525
%COMPILER% .\OtherMods\ConsistentReaper.flow -Compile -OutFormat V1 -Library P4G -Encoding P4 -Out "%OUTPUT_PATH%\data_e\field\script\dungeon.bf" -Hook
2626

2727
Xcopy /E /I /Y .\field "%OUTPUT_PATH%\data_e\field"
28+
Xcopy /E /I /Y .\scheduler "%OUTPUT_PATH%\data_e\scheduler"
2829
copy .\OtherMods\IntroSkip.flow "%OUTPUT_PATH%\data_e\field\pack\fd020_001\IntroSkip.bf.flow"
30+
copy .\OtherMods\SaveEveryday.flow "%OUTPUT_PATH%\data_e\scheduler\SaveEveryday.bf.flow"
31+
copy .\OtherMods\RemoveLunchtimeInvites.flow "%OUTPUT_PATH%\data_e\scheduler\RemoveLunchtimeInvites.bf.flow"
32+
copy .\Setup\FirstTimeSetup.flow "%OUTPUT_PATH%\data_e\scheduler\FirstTimeSetup.bf.flow"
33+
copy .\Setup\FirstTimeSetup.msg "%OUTPUT_PATH%\data_e\scheduler\FirstTimeSetup.msg"
2934

3035
del /s /q "%INPUT_PATH%\init_free\*"
3136
rmdir /s /q "%INPUT_PATH%\init_free"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// Imports
1010
//
1111

12-
import( "../build/input/field/script/dungeon01.bf" );
12+
import( "dungeon01.bf" );
1313

1414
//
1515
// Procedure declarations

field/script/fc0.flow

Lines changed: 0 additions & 43 deletions
This file was deleted.

field/script/fc1.flow

Lines changed: 0 additions & 43 deletions
This file was deleted.

field/script/fc2.flow

Lines changed: 0 additions & 43 deletions
This file was deleted.

scheduler/scheduler_01.bf.flow

Lines changed: 0 additions & 9 deletions
This file was deleted.

scheduler/scheduler_01.flow

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import("scheduler_01.bf");
2+
import("SaveEveryday.bf.flow");
3+
import("RemoveLunchtimeInvites.bf.flow");
4+
5+
// Remove lunchtime invitations
6+
void start_cmm_hirusasoi_hook()
7+
{
8+
RemoveLunchtimeInvitesSpecial();
9+
}

scheduler/scheduler_02.bf.flow

Lines changed: 0 additions & 9 deletions
This file was deleted.

scheduler/scheduler_02.flow

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import("scheduler_02.bf");
2+
import("SaveEveryday.bf.flow");
3+
import("RemoveLunchtimeInvites.bf.flow");
4+
5+
// Remove lunchtime invitations
6+
void start_cmm_hirusasoi_hook()
7+
{
8+
RemoveLunchtimeInvitesSpecial();
9+
}

scheduler/scheduler_03.bf.flow

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)