Skip to content

Commit

Permalink
2.4.3a - Fix egg split (#79)
Browse files Browse the repository at this point in the history
Co-authored-by: NERS <[email protected]>
  • Loading branch information
Tenebrosful and ners-xd authored Nov 25, 2024
1 parent 387dad7 commit ba0ffbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Deltarune.asl
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ init
{"Ch2_MCFWarp", new object[] {false, "room_dw_mansion_entrance_ch2", "room_dw_cyber_musical_door_ch2", -1, -1, 0}},
{"Ch2_MTZWarp", new object[] {false, "room_dw_mansion_entrance_ch2", "room_dw_city_intro_ch2", -1, -1, 0}},
{"Ch2_FreezeRing", new object[] {false, null, "room_dw_city_big_2_ch2", -1, -1, 9}},
{"Ch2_Egg", new object[] {false, null, "room_dw_city_man_ch2", -1, -1, 10}},
{"Ch2_Egg", new object[] {false, null, null, -1, -1, 10}},
{"Ch2_Mouse2Puzzle", new object[] {false, "room_dw_city_mice2_ch2", "room_dw_city_cheesemaze_ch2", -1, -1, 0}},
{"Ch2_SGBerdly", new object[] {false, null, "room_dw_city_berdly_ch2", -1, -1, 11}},
{"Ch2_SGBerdly_LeaveRoom", new object[] {false, "room_dw_city_berdly_ch2", "room_dw_city_poppup_ch2", -1, -1, 0}},
Expand Down Expand Up @@ -564,7 +564,7 @@ split
break;

case 10: // Ch2_Egg
pass = ((old.text == @"* タマゴを 手に入れた。/%" || old.text == @"* You got the Egg./%") && current.text == null);
pass = ((current.roomName == "room_dw_cyber_musical_door_ch2" || current.roomName == "room_dw_city_man_ch2") && (old.text == @"* タマゴを 手に入れた。/%" || old.text == @"* You got the Egg./%") && current.text == null);
break;

case 11: // Ch2_SGBerdly
Expand Down

0 comments on commit ba0ffbd

Please sign in to comment.