From bc53491ecabb25ab4aee17caba114bb837e3cd10 Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Mon, 9 Jun 2025 11:21:04 -0400 Subject: [PATCH] incorporeal shadekin don't make motion echos (#17824) --- code/modules/mob/living/living_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/living_movement.dm b/code/modules/mob/living/living_movement.dm index ac22628e54..f000baf7b0 100644 --- a/code/modules/mob/living/living_movement.dm +++ b/code/modules/mob/living/living_movement.dm @@ -271,7 +271,7 @@ default behaviour is: /mob/living/Moved(var/atom/oldloc, direct, forced, movetime) . = ..() handle_footstep(loc) - if(!forced && movetime) + if(!forced && movetime && !is_incorporeal()) SSmotiontracker?.ping(src) // Incase of before init "turf enter gravity" this is ?, unfortunately. // Begin VOREstation edit if(is_shifted)