diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-13 06:14:27 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-13 06:14:27 +0000 |
commit | 3e7946b89e1318de435ecbb02303d02715b988a1 (patch) | |
tree | f9396ad8d46831a102153493eae3c5ea14ed35ed /src/map/skill.c | |
parent | 5693a17936d6de9ed99e6651f0c79415bf6c9870 (diff) | |
download | hercules-3e7946b89e1318de435ecbb02303d02715b988a1.tar.gz hercules-3e7946b89e1318de435ecbb02303d02715b988a1.tar.bz2 hercules-3e7946b89e1318de435ecbb02303d02715b988a1.tar.xz hercules-3e7946b89e1318de435ecbb02303d02715b988a1.zip |
- Removed @itemcheck as it was totally pointless.
- Corrected states killer/killable being easily dispellable.
- Fixed the totally wrong text messages being used for @killer/@killable related atcommands, added appropiate entries to msg_athena
- Magic and Misc attacks will now get type "flee" when they do less than 1 damage, this blocks them from causing additional status effects when they are blocked.
- Cleaned up a bit the Basilica code, it should now properly end when you walk.
- Added an unnecessary qty check when inserting cards :P
- Fixed some logs not working when you enabled all logs.
- Corrected unmute being a level 60 command by default (should be 80)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8256 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r-- | src/map/skill.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index 43c1cdc4c..d4fbd4972 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -6094,9 +6094,7 @@ int skill_castend_pos2 (struct block_list *src, int x, int y, int skillid, int s case HP_BASILICA: skill_clear_unitgroup(src); sg = skill_unitsetting(src,skillid,skilllv,x,y,0); - sc_start4(src,type,100, - skilllv,0,BCT_SELF,sg->group_id, - skill_get_time(skillid,skilllv)); + sc_start(src,type,100,skilllv,skill_get_time(skillid,skilllv)); flag|=1; break; case CG_HERMODE: @@ -7355,7 +7353,6 @@ int skill_unit_onout (struct skill_unit *src, struct block_list *bl, unsigned in if (sc && sc->data[type].timer!=-1) status_change_end(bl,type,-1); break; - case UNT_BASILICA: //Clear basilica if the owner moved [Skotlex] case UNT_HERMODE: //Clear Hermode if the owner moved. if (sc && sc->data[type].timer!=-1 && sc->data[type].val3 == BCT_SELF && sc->data[type].val4 == sg->group_id) status_change_end(bl,type,-1); |