diff --git a/src/Murder/Systems/Agents/AgentSpriteSystem.cs b/src/Murder/Systems/Agents/AgentSpriteSystem.cs index 96422613..ece2747f 100644 --- a/src/Murder/Systems/Agents/AgentSpriteSystem.cs +++ b/src/Murder/Systems/Agents/AgentSpriteSystem.cs @@ -15,6 +15,7 @@ using Murder.Messages; using Murder.Services; using Murder.Utilities; +using System.Diagnostics; using System.Numerics; namespace Murder.Systems @@ -93,7 +94,10 @@ public void Draw(RenderContext render, Context context) (string suffix, bool horizontalFlip) = DirectionHelper.GetSuffixFromAngle(e, prefix, facing.Angle); if (overload is not null && overload.Value.IgnoreFacing) + { suffix = string.Empty; + horizontalFlip = false; + } if (string.IsNullOrEmpty(suffix)) prefix = prefix.Trim('_');