diff options
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/mahoud.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/003-1/mahoud.txt b/npc/003-1/mahoud.txt index 61a126909..69ff7f3ed 100644 --- a/npc/003-1/mahoud.txt +++ b/npc/003-1/mahoud.txt @@ -14,7 +14,7 @@ if (.@count == 0) close; .@Cost = .@count * .COST_PER_BOTTLE; - .@empty = countitem("EmptyBottle"); + .@empty = countitem(EmptyBottle); if (.@empty < .@count) goto L_NotEnoughBottles; @@ -24,8 +24,8 @@ inventoryplace BottleOfTonoriWater, .@count; Zeny=Zeny-.@Cost; - delitem "EmptyBottle", .@count; - getitem "BottleOfTonoriWater", .@count; + delitem EmptyBottle, .@count; + getitem BottleOfTonoriWater, .@count; close; L_NotEnoughBottles: |