You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
fix zzyyxx output for MoneyByteParam (checkmoney, takemoney)
This commit is contained in:
@@ -1598,7 +1598,7 @@ class MoneyByteParam(MultiByteParam):
|
|||||||
y = (value & 0x00FF00) >> 8
|
y = (value & 0x00FF00) >> 8
|
||||||
z = (value & 0xFF0000) >> 16
|
z = (value & 0xFF0000) >> 16
|
||||||
|
|
||||||
return str(x) + "\ndb "+str(y)+"\ndb "+str(z)
|
return str(z) + "\ndb "+str(y)+"\ndb "+str(x)
|
||||||
|
|
||||||
class CoinByteParam(MultiByteParam):
|
class CoinByteParam(MultiByteParam):
|
||||||
size = 2
|
size = 2
|
||||||
|
Reference in New Issue
Block a user