From fc225d929d7532c3131a369fe8825eee7daf23ee Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 8 Jan 2018 15:49:55 -0500 Subject: [PATCH] fixes footstep sound spam when walking against objects --- modular_citadel/cit_turfs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_citadel/cit_turfs.dm b/modular_citadel/cit_turfs.dm index 05f5d26198..d5a9c8b524 100644 --- a/modular_citadel/cit_turfs.dm +++ b/modular_citadel/cit_turfs.dm @@ -73,7 +73,7 @@ GLOBAL_LIST_INIT(turf_footstep_sounds, list( /mob/living/Move(atom/newloc, direct) . = ..() - if(makesfootstepsounds) + if(. && makesfootstepsounds) CitFootstep(newloc) //Baystation-styled tile dirtification.