From 2d763b53a6071b232794795c510363b280f45a89 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Wed, 16 May 2012 12:07:20 -0500 Subject: [PATCH] fix zzyyxx output for MoneyByteParam (checkmoney, takemoney) --- extras/crystal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/crystal.py b/extras/crystal.py index 98f5c2543..e26cf6dda 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -1598,7 +1598,7 @@ class MoneyByteParam(MultiByteParam): y = (value & 0x00FF00) >> 8 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): size = 2