diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/skill.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 35fe5243d..183799325 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2007/11/24 + * Fixed a crash when Slim Pitcher is cast * Fixed a crash when a taekwon hits a wall while Sprinting (bugreport:483) * Added support for latest official client/server packet changes [ultramage] - enable by setting PACKETVER to 9; note that this breaks older clients diff --git a/src/map/skill.c b/src/map/skill.c index 08e87232b..2e18aee59 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -4726,7 +4726,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in if (sp) sp = sp * (100 + pc_checkskill(dstsd,MG_SRECOVERY)*10)/100; } - if (tsc && tsc->data[SC_CRITICALWOUND]->timer!=-1) + if (tsc && tsc->data[SC_CRITICALWOUND]) { hp -= hp * tsc->data[SC_CRITICALWOUND]->val2 / 100; sp -= sp * tsc->data[SC_CRITICALWOUND]->val2 / 100; |