diff options
-rw-r--r-- | npc/017-1/drowned_man.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/017-1/drowned_man.txt b/npc/017-1/drowned_man.txt index f111ae1fc..326b3dd69 100644 --- a/npc/017-1/drowned_man.txt +++ b/npc/017-1/drowned_man.txt @@ -110,7 +110,7 @@ OnInit: } // Rate-limited? (3 seconds rate limit) - if (@nojump >= gettimetick(0)+3) { + if (@nojump >= gettimetick(2)+3) { dispbottom l("Gimme a sec to take a breath! I don't want to jump!"); end; } @@ -125,7 +125,7 @@ OnInit: 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; - @nojump=gettimetick(0); + @nojump=gettimetick(2); close; } } |