summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-04-11 12:28:09 -0300
committerJesusaves <cpntb1@ymail.com>2020-04-11 12:28:09 -0300
commit3e56dbceb67a2b5dc5ca53966d5f080cf69f64ae (patch)
tree15302476d2f78b88735ca2f252b3407260ee4a9c
parent0eb619881338bf8a62852a49a019eb3fd10cda72 (diff)
downloadserverdata-3e56dbceb67a2b5dc5ca53966d5f080cf69f64ae.tar.gz
serverdata-3e56dbceb67a2b5dc5ca53966d5f080cf69f64ae.tar.bz2
serverdata-3e56dbceb67a2b5dc5ca53966d5f080cf69f64ae.tar.xz
serverdata-3e56dbceb67a2b5dc5ca53966d5f080cf69f64ae.zip
Only gettimetick(2) works
-rw-r--r--npc/017-1/drowned_man.txt4
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;
}
}