diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-08-07 16:00:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-08-07 16:00:53 -0300 |
commit | a6fef682d6b9908a472c43ea02d47e2387b21df8 (patch) | |
tree | b858aabeb99adc77d456173d3b9cd5b0bf5dd00d /npc | |
parent | b9d51a9975b0501d7ed1a29887ce395a2453e888 (diff) | |
download | serverdata-a6fef682d6b9908a472c43ea02d47e2387b21df8.tar.gz serverdata-a6fef682d6b9908a472c43ea02d47e2387b21df8.tar.bz2 serverdata-a6fef682d6b9908a472c43ea02d47e2387b21df8.tar.xz serverdata-a6fef682d6b9908a472c43ea02d47e2387b21df8.zip |
Fix bug found and reported by Heaven
Diffstat (limited to 'npc')
-rw-r--r-- | npc/017-1/drowned_man.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/017-1/drowned_man.txt b/npc/017-1/drowned_man.txt index 9f0cda495..88e1230ed 100644 --- a/npc/017-1/drowned_man.txt +++ b/npc/017-1/drowned_man.txt @@ -121,7 +121,7 @@ OnInit: // Can't jump with pets // FIXME: Move it elsewhere - resist pet_Detective updates for (.@i=0+PiouEgg; .@i <= 0+MoggunEgg ; .@i++) { - if (countitem(.@i) >= 0) { + if (countitem(.@i) > 0) { mesc l("Can't bring pets with you..."), 1; next; mesc l("Do you really think the poor creature should jump a bridge in water and DIE?"), 1; |