diff options
Diffstat (limited to 'maps/GoldenrodDeptStore6F.asm')
-rw-r--r-- | maps/GoldenrodDeptStore6F.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/maps/GoldenrodDeptStore6F.asm b/maps/GoldenrodDeptStore6F.asm index c4f75766b..265e61ef1 100644 --- a/maps/GoldenrodDeptStore6F.asm +++ b/maps/GoldenrodDeptStore6F.asm @@ -22,7 +22,7 @@ GoldenrodVendingMachine: .FreshWater checkmoney $0, 200 if_equal $2, .NotEnoughMoney - giveitem FRESH_WATER, $1 + giveitem FRESH_WATER, 1 iffalse .NotEnoughSpace takemoney $0, 200 itemtotext FRESH_WATER, $0 @@ -31,7 +31,7 @@ GoldenrodVendingMachine: .SodaPop checkmoney $0, 300 if_equal $2, .NotEnoughMoney - giveitem SODA_POP, $1 + giveitem SODA_POP, 1 iffalse .NotEnoughSpace takemoney $0, 300 itemtotext SODA_POP, $0 @@ -40,7 +40,7 @@ GoldenrodVendingMachine: .Lemonade checkmoney $0, 350 if_equal $2, .NotEnoughMoney - giveitem LEMONADE, $1 + giveitem LEMONADE, 1 iffalse .NotEnoughSpace takemoney $0, 350 itemtotext LEMONADE, $0 |