diff --git a/code/modules/clothing/spacesuits/rig/modules/ninja.dm b/code/modules/clothing/spacesuits/rig/modules/ninja.dm index 0dfa1bd93e6..778c30dedea 100644 --- a/code/modules/clothing/spacesuits/rig/modules/ninja.dm +++ b/code/modules/clothing/spacesuits/rig/modules/ninja.dm @@ -102,7 +102,7 @@ var/mob/living/carbon/human/H = holder.wearer if(!istype(H.loc, /turf)) - usr << "You cannot teleport out of your current location." + H << "You cannot teleport out of your current location." return 0 var/turf/T @@ -112,15 +112,15 @@ T = get_teleport_loc(get_turf(H), H, rand(5, 9)) if(!T || T.density) - usr << "You cannot teleport into solid walls." + H << "You cannot teleport into solid walls." return 0 if(T.z in config.admin_levels) - usr << "You cannot use your teleporter on this Z-level." + H << "You cannot use your teleporter on this Z-level." return 0 if(T.contains_dense_objects()) - usr << "You cannot teleport to a location with solid objects." + H << "You cannot teleport to a location with solid objects." phase_out(H,get_turf(H)) H.loc = T