diff options
Diffstat (limited to 'world/map/npc/024-1/eomie.txt')
-rw-r--r-- | world/map/npc/024-1/eomie.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/world/map/npc/024-1/eomie.txt b/world/map/npc/024-1/eomie.txt index 1f62cdb1..5889e6b5 100644 --- a/world/map/npc/024-1/eomie.txt +++ b/world/map/npc/024-1/eomie.txt @@ -63,7 +63,8 @@ L_Continue: callsub S_Update_Mask; goto L_GetStuff; -L_GetStuff: // @state == 8 +L_GetStuff: + // @state == 8 mes "[Eomie]"; mes "\"I could try to interrupt my spells to be able to cast the spell on the fertilizer, but then I need to prepare the grass for this."; mes "Bring me " + @grass_amount + " Grass Seeds, " + @water_amount + " Bottles of Water and " + @ice_amount + " Ice Cubes.\""; @@ -75,6 +76,7 @@ L_GetStuff: // @state == 8 L_More: if ((countitem("GrassSeed") < @grass_amount) || (countitem("BottleOfWater") < @water_amount) || (countitem("IceCube") < @ice_amount)) goto L_NoItem; + delitem "GrassSeed", @grass_amount; delitem "BottleOfWater", @water_amount; delitem "IceCube", @ice_amount; |