mirror of
https://github.com/HerculesWS/Hercules
synced 2026-08-15 12:23:13 -04:00
Fixed Bug #6803
You no longer can dispell guild mates in non-pkable areas http://hercules.ws/board/tracker/issue-6803-dispell-bug/ Signed-off-by: shennetsind <ind@henn.et>
This commit is contained in:
parent
6fb7161027
commit
a4802eaef9
1 changed files with 6 additions and 0 deletions
|
|
@ -6360,6 +6360,12 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui
|
|||
}
|
||||
if(status_isimmune(bl) || !tsc || !tsc->count)
|
||||
break;
|
||||
|
||||
if( sd && dstsd && !map_flag_vs(sd->bl.m) && sd->status.guild_id == dstsd->status.guild_id ) {
|
||||
clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0);
|
||||
break;
|
||||
}
|
||||
|
||||
for(i=0;i<SC_MAX;i++)
|
||||
{
|
||||
if (!tsc->data[i])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue