Skip to content

Commit

Permalink
Fix missing REMA to end scenario texts in events. #22.
Browse files Browse the repository at this point in the history
  • Loading branch information
laqieer committed Aug 13, 2022
1 parent d956d8a commit dc5a62d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions content/chapter_event/X0001Event.S
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,18 @@ BeginningScene:
ShowBG(BG001_Brave)
MUSC BGM_EVENT_PLAIN_01
TEX1 EvTx_X0001_MID_SCENARIO_OPENING
REMA
LOU1 EnemyUnits
ENUN
LOU1 AllyUnits
ENUN
MUSC BGM_MAP_FES_01
TEX1 EvTx_X0001_MID_SCENARIO_MAP_BEGIN
REMA
ENDA
EndingScene:
TEX1 EvTx_X0001_MID_SCENARIO_MAP_END
REMA
MNCH X0001Next
ENDA
AllyUnits:
Expand Down
3 changes: 3 additions & 0 deletions content/chapter_event/XX001Event.S
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,15 @@ BeginningScene:
ENUN
MUSC BGM_EVENT_SERIOUS_02
TEX1 EvTx_XX001_MID_SCENARIO_MAP_BEGIN
REMA
ENDA
EndingScene:
TEX1 EvTx_XX001_MID_SCENARIO_MAP_END
REMA
ShowBG(BG005_Castle)
MUSC BGM_EVENT_SERIOUS_03
TEX1 EvTx_XX001_MID_SCENARIO_ENDING
REMA
MNCH XX001Next
ENDA
AllyUnits:
Expand Down
1 change: 1 addition & 0 deletions tool/chapter/make_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ def load_scenario(scenario: Scenario):
print('\tMUSC ' + bgm)
if text in texts:
print('\tTEX1 EvTx_' + text)
print('\tREMA')

map_name = get_filename(sys.argv[1])
map_file = Path(sys.argv[1])
Expand Down

0 comments on commit dc5a62d

Please sign in to comment.