diff options
author | Jedzkie <jedzkie13@rocketmail.com> | 2015-12-23 15:27:20 +0800 |
---|---|---|
committer | Jedzkie <jedzkie13@rocketmail.com> | 2015-12-23 15:27:20 +0800 |
commit | 248f245f078ddba531cf771dcd42ad9e0bd0f7c7 (patch) | |
tree | 00bd7bb5eb7a7c98160cb413d22f3a9d07912d29 /src/map/skill.c | |
parent | c0afd048169aa9d66c739ac548df05ed498a0a34 (diff) | |
download | hercules-248f245f078ddba531cf771dcd42ad9e0bd0f7c7.tar.gz hercules-248f245f078ddba531cf771dcd42ad9e0bd0f7c7.tar.bz2 hercules-248f245f078ddba531cf771dcd42ad9e0bd0f7c7.tar.xz hercules-248f245f078ddba531cf771dcd42ad9e0bd0f7c7.zip |
Item Update:
- Added official effect for Rapid Life Water.
- Added new items:
- Fruit Salad (http://www.divine-pride.net/database/item/11715)
- Shepherd Salad (http://www.divine-pride.net/database/item/11716)
- Yogurt (http://www.divine-pride.net/database/item/11717)
- Bisket Dessert (http://www.divine-pride.net/database/item/11718)
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 f82cdee71..f870524fa 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -7623,7 +7623,7 @@ int skill_castend_nodamage_id(struct block_list *src, struct block_list *bl, uin // Slim Pitcher case CR_SLIMPITCHER: // Updated to block Slim Pitcher from working on barricades and guardian stones. - if( dstmd && (dstmd->class_ == MOBID_EMPERIUM || (dstmd->class_ >= MOBID_BARRICADE1 && dstmd->class_ <= MOBID_GUARDIAN_STONE2)) ) + if (dstmd && (dstmd->class_ == MOBID_EMPERIUM || (dstmd->class_ >= MOBID_BARRICADE1 && dstmd->class_ <= MOBID_GUARDIAN_STONE2))) break; if (script->potion_hp || script->potion_sp) { int hp = script->potion_hp, sp = script->potion_sp; |