From 3415f88cc245ca0566d24841e1c7f4012dd9ccec Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Mon, 24 Aug 2015 19:02:34 +0930 Subject: [PATCH] Reverting a nonfunctional H to usr change. --- code/modules/clothing/spacesuits/rig/modules/ninja.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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