summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-09-26 18:22:27 -0400
committeryenatch <yenatch@gmail.com>2013-09-26 18:22:27 -0400
commitf4b04ff8e90f49a8ad021b7b7229a9a47a087c06 (patch)
tree8eff4d95e7d1f6b90ea304625ffcd44768b03917
parent46f1a2e1c3f4d1feeeeb3214f59fccf635415f8f (diff)
if_greater_than and if_less_than commands were swapped
-rw-r--r--pokemontools/crystal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py
index d93540b..bf67ee5 100644
--- a/pokemontools/crystal.py
+++ b/pokemontools/crystal.py
@@ -2695,8 +2695,8 @@ pksv_crystal_more = {
0x07: ["if not equal", ["byte", SingleByteParam], ["pointer", ScriptPointerLabelParam]],
0x08: ["iffalse", ["pointer", ScriptPointerLabelParam]],
0x09: ["iftrue", ["pointer", ScriptPointerLabelParam]],
- 0x0A: ["if less than", ["byte", SingleByteParam], ["pointer", ScriptPointerLabelParam]],
- 0x0B: ["if greater than", ["byte", SingleByteParam], ["pointer", ScriptPointerLabelParam]],
+ 0x0A: ["if greater than", ["byte", SingleByteParam], ["pointer", ScriptPointerLabelParam]],
+ 0x0B: ["if less than", ["byte", SingleByteParam], ["pointer", ScriptPointerLabelParam]],
0x0C: ["jumpstd", ["predefined_script", MultiByteParam]],
0x0D: ["callstd", ["predefined_script", MultiByteParam]],
0x0E: ["3callasm", ["asm", AsmPointerParam]],