From 6f20d002643b31249fa0859282baf5dafbb5d748 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Fri, 12 Feb 2021 11:53:10 +0100 Subject: [PATCH] Add missing Dirty call in StunnableComponent --- Content.Server/GameObjects/Components/Mobs/StunnableComponent.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/GameObjects/Components/Mobs/StunnableComponent.cs b/Content.Server/GameObjects/Components/Mobs/StunnableComponent.cs index e29da76bfb..29662ab12a 100644 --- a/Content.Server/GameObjects/Components/Mobs/StunnableComponent.cs +++ b/Content.Server/GameObjects/Components/Mobs/StunnableComponent.cs @@ -44,6 +44,7 @@ namespace Content.Server.GameObjects.Components.Mobs } KnockdownTimer = 0f; + Dirty(); } public void Update(float delta)