From 0e326849051ecb0cb239233a0d0fc5c33dfd6413 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Thu, 1 Apr 2021 18:22:26 -0700 Subject: [PATCH] Fix missing footstep sounds getting through --- Content.Server/Physics/Controllers/MoverController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Physics/Controllers/MoverController.cs b/Content.Server/Physics/Controllers/MoverController.cs index 23d3b423f3..5ae9cdf509 100644 --- a/Content.Server/Physics/Controllers/MoverController.cs +++ b/Content.Server/Physics/Controllers/MoverController.cs @@ -168,7 +168,7 @@ namespace Content.Server.Physics.Controllers { // Walking on a tile. var def = (ContentTileDefinition) _tileDefinitionManager[tile.Tile.TypeId]; - if (def.FootstepSounds == null) + if (string.IsNullOrEmpty(def.FootstepSounds)) { // Nothing to play, oh well. return;