summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-09-24 03:24:29 -0400
committeryenatch <yenatch@gmail.com>2013-09-24 03:24:29 -0400
commit918adb82ba054477dacbc4c088f0acfe9961ac24 (patch)
tree2770e6d018cb5bbca1587e0ee6ccd1c3bff13a6e
parent7bf5fcab90a2861b4a8f5b5c193838ff3470a69f (diff)
script commands wildon and wildoff got mixed up
this was a mistake in the original pksv spec and tauwasser's notes
-rw-r--r--pokemontools/crystal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py
index 8a12dad..25ad6f7 100644
--- a/pokemontools/crystal.py
+++ b/pokemontools/crystal.py
@@ -2743,8 +2743,8 @@ pksv_crystal_more = {
0x34: ["checkbit2", ["bit_number", MultiByteParam]],
0x35: ["clearbit2", ["bit_number", MultiByteParam]],
0x36: ["setbit2", ["bit_number", MultiByteParam]],
- 0x37: ["wildoff"],
- 0x38: ["wildon"],
+ 0x37: ["wildon"],
+ 0x38: ["wildoff"],
0x39: ["xycompare", ["pointer", MultiByteParam]],
0x3A: ["warpmod", ["warp_id", SingleByteParam], ["map_group", MapGroupParam], ["map_id", MapIdParam]],
0x3B: ["blackoutmod", ["map_group", MapGroupParam], ["map_id", MapIdParam]],