diff options
-rw-r--r-- | Maps-that-require-Flash.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Maps-that-require-Flash.md b/Maps-that-require-Flash.md index 0b8255a..8f52bff 100644 --- a/Maps-that-require-Flash.md +++ b/Maps-that-require-Flash.md @@ -62,7 +62,7 @@ When entering a new map, this line checks if the new map is ROCK_TUNNEL_1F or mo The next line gives a divergent destination based on if yes/no. "jr" means "Jump to close location". -"nz" means "If equals zero", or in other words, "If not RockTunnel", since that is what we checked for. +"nz" means "If not equals zero", or "if zero flag is not set". In other words, "If not RockTunnel", since that is what we checked for. It translates to "If not ROCK_TUNNEL_1F, then skip the next few lines and go to the sub-section ".notRockTunnel" ```diff jr nz, .notRockTunnel |