mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
improve MoveParam to handle zeroed-out moves
This commit is contained in:
parent
40000ca816
commit
efd43a17b2
@ -1724,7 +1724,11 @@ class TrainerGroupParam(SingleByteParam):
|
|||||||
|
|
||||||
class MoveParam(SingleByteParam):
|
class MoveParam(SingleByteParam):
|
||||||
def to_asm(self):
|
def to_asm(self):
|
||||||
return moves[self.byte]
|
if self.byte in moves.keys():
|
||||||
|
return moves[self.byte]
|
||||||
|
else:
|
||||||
|
# this happens for move=0 (no move) in trainer headers
|
||||||
|
return str(self.byte)
|
||||||
|
|
||||||
class MenuDataPointerParam(PointerLabelParam):
|
class MenuDataPointerParam(PointerLabelParam):
|
||||||
#read menu data at the target site
|
#read menu data at the target site
|
||||||
|
Loading…
Reference in New Issue
Block a user