From cb09d4258563209d6c0956e3e5e62d7c0d41a3cd Mon Sep 17 00:00:00 2001 From: PKPenguin321 Date: Mon, 2 Mar 2020 00:23:20 -0800 Subject: [PATCH] go up/down message change (#49472) "There's nothing in that direction!" -> "There's nowhere to go in that direction!" because there IS something in that direction, you just can't go through the ceiling/floor. --- code/modules/mob/mob_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/mob_movement.dm b/code/modules/mob/mob_movement.dm index 740a0884138..7739c731cfd 100644 --- a/code/modules/mob/mob_movement.dm +++ b/code/modules/mob/mob_movement.dm @@ -474,7 +474,7 @@ var/turf/target = get_step_multiz(src, dir) if(!target) if(feedback) - to_chat(src, "There's nothing in that direction!") + to_chat(src, "There's nowhere to go in that direction!") return FALSE if(!canZMove(dir, target)) if(feedback)