diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/status.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 8931bed98..5d07ea59b 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -972,7 +972,8 @@ int status_check_skilluse(struct block_list *src, struct block_list *target, int } //Should fail when used on top of Land Protector [Skotlex] - if (src && skill_num == AL_TELEPORT && map_getcell(src->m, src->x, src->y, CELL_CHKLANDPROTECTOR)) + if (src && skill_num == AL_TELEPORT && map_getcell(src->m, src->x, src->y, CELL_CHKLANDPROTECTOR) + && !(status->mode&MD_BOSS)) return 0; if (src) sc = status_get_sc(src); |