From 16b364561e8a467c863ced7bbdc1548f3e2e964c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Aguilera=20Puerto?= Date: Tue, 22 Sep 2020 13:40:00 +0200 Subject: [PATCH] Fix footstep sounds not playing --- Content.Server/GameObjects/EntitySystems/MoverSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/GameObjects/EntitySystems/MoverSystem.cs b/Content.Server/GameObjects/EntitySystems/MoverSystem.cs index c95e6d4a59..ba0c66a07d 100644 --- a/Content.Server/GameObjects/EntitySystems/MoverSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/MoverSystem.cs @@ -99,6 +99,7 @@ namespace Content.Server.GameObjects.EntitySystems // Can happen when teleporting between grids. if (!transform.Coordinates.TryDistance(_entityManager, mover.LastPosition, out var distance)) { + mover.LastPosition = transform.Coordinates; return; }