diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-23 05:40:58 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-23 05:40:58 +0000 |
commit | 4b211cc39158e74c1f1113015a1eadc8344547c1 (patch) | |
tree | f596bee2472372fdc808f3ddd545ed4a671873ba /src/map/pc.c | |
parent | eeebabb26b899a56926f2bd566a12e68c5d08ca6 (diff) | |
download | hercules-4b211cc39158e74c1f1113015a1eadc8344547c1.tar.gz hercules-4b211cc39158e74c1f1113015a1eadc8344547c1.tar.bz2 hercules-4b211cc39158e74c1f1113015a1eadc8344547c1.tar.xz hercules-4b211cc39158e74c1f1113015a1eadc8344547c1.zip |
- Added -fstack-protector to the Makefile, commented out by default.
- Increased all chase/follow skill rates by 10 since their trigger rate has been decreased by that much due to the unit-data update.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6237 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 0c40d1de4..d3b023e0b 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -150,6 +150,7 @@ int pc_delinvincibletimer(struct map_session_data *sd) { if(sd->invincible_timer != -1) {
delete_timer(sd->invincible_timer,pc_invincible_timer);
sd->invincible_timer = -1;
+ skill_unit_move(&sd->bl,gettick(),1);
}
return 0;
}
|