diff --git a/modular_ss220/maps220/code/effects.dm b/modular_ss220/maps220/code/effects.dm index ba46c1b59c170..e072b9f1b23f9 100644 --- a/modular_ss220/maps220/code/effects.dm +++ b/modular_ss220/maps220/code/effects.dm @@ -119,7 +119,7 @@ GLOBAL_LIST_EMPTY(bump_teleporters) /obj/effect/bump_teleporter/singularity_pull() return -/obj/effect/bump_teleporter/Bumped(atom/user) +/obj/effect/bump_teleporter/Bumped(atom/movable/user) if(!ismob(user)) //user.loc = src.loc //Stop at teleporter location return @@ -130,7 +130,7 @@ GLOBAL_LIST_EMPTY(bump_teleporters) for(var/obj/effect/bump_teleporter/BT in GLOB.bump_teleporters) if(BT.id == src.id_target) - usr.loc = BT.loc //Teleport to location with correct id. + user.loc = BT.loc //Teleport to location with correct id. return /obj/effect/bump_teleporter/lambda