diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-15 16:43:01 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-15 16:43:01 +0000 |
commit | 7c66f59d7fa170410b8a046008b48b6d67fa36d7 (patch) | |
tree | b37cf453885a28a3b277c0b5ab612770328a077d /src/map/skill.c | |
parent | 320b8e22f24cf05fe179fdf4da0f129930986482 (diff) | |
download | hercules-7c66f59d7fa170410b8a046008b48b6d67fa36d7.tar.gz hercules-7c66f59d7fa170410b8a046008b48b6d67fa36d7.tar.bz2 hercules-7c66f59d7fa170410b8a046008b48b6d67fa36d7.tar.xz hercules-7c66f59d7fa170410b8a046008b48b6d67fa36d7.zip |
- Probably fixed the registration flood protection code being broken.
- Readded a commented piece of code that's meant to prevent @warp from printing "invalid target cell!" messages on the console.
- Joint Break should only re-start the bleeding timer when it currently IS the one that causes bleeding.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9653 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 81788c88a..25063712a 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -8481,7 +8481,7 @@ int skill_check_condition (struct map_session_data *sd, int skill, int lv, int t return 0; } break; - case ST_RECOV_WEIGHT_RATE://## what is this for and why can battle_config.natural_heal_weight_rate be 101? [FlavioJS] + case ST_RECOV_WEIGHT_RATE: if(battle_config.natural_heal_weight_rate <= 100 && sd->weight*100/sd->max_weight >= battle_config.natural_heal_weight_rate) { clif_skill_fail(sd,skill,0,0); return 0; |