- 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://svn.code.sf.net/p/rathena/svn/trunk@6237 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2006-04-23 05:40:58 +00:00
parent 89e5271637
commit 34fa41861e
4 changed files with 3922 additions and 3918 deletions

View File

@ -20,6 +20,7 @@ OPT += -O2
# OPT += -rdynamic
OPT += -ffast-math
# OPT += -fbounds-checking
# OPT += -fstack-protector
# OPT += -fomit-frame-pointer
OPT += -Wall -Wno-sign-compare
# OPT += -DCHRIF_OLDINFO

View File

@ -26,6 +26,10 @@
-----
=========================
04/23
* Increased all chase/follow skill rates by 10 since their trigger rate has
been decreased by that much due to the unit-data update. [Skotlex]
04/22
* Updated Kiel/Odin mob stat to kRO official guidebook [Vicious]
* Major fix to the Einbroch mobs [Playtester]

File diff suppressed because it is too large Load Diff

View File

@ -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;
}