diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-18 14:33:58 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-18 14:33:58 -0700 |
commit | 7889cf487a908a6f5fcdeb6c529e74061b7ca23b (patch) | |
tree | cd19e53241c77d8da164937c6c9f28ab69b0e28a | |
parent | 73e5570f7d27df15eb9d009b0648120c6130b4b1 (diff) | |
download | serverdata-7889cf487a908a6f5fcdeb6c529e74061b7ca23b.tar.gz serverdata-7889cf487a908a6f5fcdeb6c529e74061b7ca23b.tar.bz2 serverdata-7889cf487a908a6f5fcdeb6c529e74061b7ca23b.tar.xz serverdata-7889cf487a908a6f5fcdeb6c529e74061b7ca23b.zip |
Fix off-by-one error if a non-cheater dyes a towel
-rw-r--r-- | world/map/npc/003-1/stranger.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/world/map/npc/003-1/stranger.txt b/world/map/npc/003-1/stranger.txt index cc1114ff..7166ee49 100644 --- a/world/map/npc/003-1/stranger.txt +++ b/world/map/npc/003-1/stranger.txt @@ -419,8 +419,8 @@ L_DeletePowder: goto L_DyeTowel; L_DyeTowel: - callfunc "MultiWarpTowel"; delitem @towelReq$[@towelCheckCount], 1; + callfunc "MultiWarpTowel"; delitem "BottleOfWater", 1; getitem @warpTowelName$, 1; mes "He takes your towel, the water and the gem powder, then he turns away and does something you can't see. After a few minutes, he turns to you again."; |