diff options
author | Whatever-Man <57546075+Whatever-Man@users.noreply.github.com> | 2022-04-15 00:25:40 -0600 |
---|---|---|
committer | Whatever-Man <57546075+Whatever-Man@users.noreply.github.com> | 2022-04-15 00:25:40 -0600 |
commit | 5d825adb0c3113b44a78e076f7ed1966064c1a79 (patch) | |
tree | 5ec698c5e3751c6413f6055f5f6157a4150cb9af | |
parent | fbbf1b76e71cd7a9d7b44ed5021ce6071865da1c (diff) |
Updated Maps that require Flash (markdown)
-rw-r--r-- | Maps-that-require-Flash.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Maps-that-require-Flash.md b/Maps-that-require-Flash.md index 08ce937..f34a0ef 100644 --- a/Maps-that-require-Flash.md +++ b/Maps-that-require-Flash.md @@ -174,8 +174,8 @@ We just have to insert the check after the Rock Tunnel check and the jump locati So the end result would be as follows: ```diff - cp ROCK_TUNNEL_1F - jr n, .yesRockTunnel ; New ; If yes, then jump to exception. + cp ROCK_TUNNEL_1F ; Checks if ROCK_TUNNEL_1F + jr n, .yesRockTunnel ; If yes, then jump to .yesRockTunnel + cp POWER_PLANT ; Checks if POWER_PLANT + jr n, .yesPowerPlant ; If yes, then jump to .yesPowerPlant call PlayMapChangeSound ; New Normal ; no FLASH needed |