diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-02 22:33:31 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-02 22:33:31 -0700 |
commit | a00579f57be4f02cd2a60ecd9468277ba6631e78 (patch) | |
tree | bc1117ddede14e61b030bfe7a337d323ddea75c2 /world/map/npc/024-1/eomie.txt | |
parent | c0ba38cd4b68491e28e467889804ebc09c9c002e (diff) | |
download | serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.tar.gz serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.tar.bz2 serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.tar.xz serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.zip |
Fix style (split for more readable diff)
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; |