diff options
Diffstat (limited to 'maps/CeladonDeptStore6F.asm')
-rw-r--r-- | maps/CeladonDeptStore6F.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/maps/CeladonDeptStore6F.asm b/maps/CeladonDeptStore6F.asm index ee9013f0c..2d8703dd7 100644 --- a/maps/CeladonDeptStore6F.asm +++ b/maps/CeladonDeptStore6F.asm @@ -36,7 +36,7 @@ CeladonVendingMachine: .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 @@ -45,7 +45,7 @@ CeladonVendingMachine: .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 @@ -54,7 +54,7 @@ CeladonVendingMachine: .Lemonade checkmoney $0, 350 if_equal $2, .NotEnoughMoney - giveitem LEMONADE, $1 + giveitem LEMONADE, 1 iffalse .NotEnoughSpace takemoney $0, 350 itemtotext LEMONADE, $0 |