summaryrefslogtreecommitdiff
path: root/src/map/skill.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/skill.c')
-rw-r--r--src/map/skill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/skill.c b/src/map/skill.c
index 31249aa1e..04b13b82e 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -4327,7 +4327,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in
case AL_TELEPORT: /* テレポ?ト */
if(sd) {
- if (map[sd->bl.m].flag.noteleport) { /* テレポ禁止 */
+ if (map[bl->m].flag.noteleport) { /* テレポ禁止 */
clif_skill_teleportmessage(sd,0);
break;
}
@@ -4351,7 +4351,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, in
pc_setpos(sd,sd->status.save_point.map,
sd->status.save_point.x,sd->status.save_point.y,3);
}
- } else if(dstmd && !map[sd->bl.m].flag.monster_noteleport)
+ } else if(dstmd && !map[bl->m].flag.monster_noteleport)
mob_warp(dstmd,-1,-1,-1,3);
break;