diff options
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 22c7165e4..d3f72421d 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -1327,6 +1327,13 @@ int unit_skilluse_id2(struct block_list *src, int target_id, uint16 skill_id, ui } } break; + case NC_DISJOINT: + if( target->type == BL_PC ){ + struct mob_data *md; + if( (md = iMap->id2md(target->id)) && md->master_id != src->id ) + casttime <<= 1; + } + break; } // moved here to prevent Suffragium from ending if skill fails |