diff options
-rw-r--r-- | npc/commands/resync.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/commands/resync.txt b/npc/commands/resync.txt index 3c68d8644..246bfa88d 100644 --- a/npc/commands/resync.txt +++ b/npc/commands/resync.txt @@ -25,7 +25,7 @@ OnCall: } getmapxy(.@m$, .@x, .@y, 0); slide .@x, .@y; - @rsync_delay=gettimetick(2)+rand(4,6); + @rsync_delay=gettimetick(2)+rand2(3,5); end; // Hard Resync @@ -34,7 +34,7 @@ OnCallRefresh: dispbottom l("Not resync'ing to prevent flood."); end; } - @rsync_delay=gettimetick(2)+rand(4,6); + @rsync_delay=gettimetick(2)+rand2(3,5); atcommand("@refresh"); end; |