summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-16 18:00:27 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-16 18:00:27 +0000
commitcaf2c7462fb04ce84cd2e3044a25578171efa35d (patch)
tree0710e5dda55312c4fb61078a904fd489f68ecfea /src/map/pc.c
parent0840c847bd1e4d60e2a2af5d19859dbc21a12a24 (diff)
downloadhercules-caf2c7462fb04ce84cd2e3044a25578171efa35d.tar.gz
hercules-caf2c7462fb04ce84cd2e3044a25578171efa35d.tar.bz2
hercules-caf2c7462fb04ce84cd2e3044a25578171efa35d.tar.xz
hercules-caf2c7462fb04ce84cd2e3044a25578171efa35d.zip
- Fixed Magnum break's animation not showing if the fire-elemental bonus did not start.
- Removed some last traces of waterlevel reading. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6120 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 493d6327c..2dcb11a63 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -3835,7 +3835,7 @@ int pc_follow_timer(int tid,unsigned int tick,int id,int data)
pc_setpos(sd, tsd->mapindex, tsd->bl.x, tsd->bl.y, 3);
}
sd->followtimer = add_timer(
- tick + sd->aspd + rand() % 1000, // increase time a bit to loosen up map's load
+ tick + 1000, // increase time a bit to loosen up map's load
pc_follow_timer, sd->bl.id, 0);
return 0;
}