diff options
Diffstat (limited to 'npc/merchants/icecream.txt')
-rw-r--r-- | npc/merchants/icecream.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/merchants/icecream.txt b/npc/merchants/icecream.txt index a8df94753..ba05d4f94 100644 --- a/npc/merchants/icecream.txt +++ b/npc/merchants/icecream.txt @@ -82,7 +82,7 @@ mes "Price is ^3355FF100 Zeny^000000 per ice cream."; close; } - if(checkweight(536,.@input) == 0) { + if(checkweight(Ice_Cream,.@input) == 0) { mes "[Ice Cream Maker]"; mes "Dear customer,you look like you're carrying a lot."; mes "Ice Cream is fine,"; @@ -91,7 +91,7 @@ close; } Zeny -= 100*.@input; - getitem 536,.@input; // Ice_Cream + getitem Ice_Cream,.@input; // Ice_Cream close; } |