diff --git a/Content.Shared/Stunnable/SharedStunSystem.cs b/Content.Shared/Stunnable/SharedStunSystem.cs index 4c4523849b..199afcabf2 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.cs @@ -199,12 +199,12 @@ public abstract partial class SharedStunSystem : EntitySystem drop = evAttempt.Drop; } - Knockdown(entity!, time, autoStand, drop); + Knockdown(entity!, time, refresh, autoStand, drop); return true; } - private void Knockdown(Entity entity, TimeSpan? time, bool refresh, bool autoStand = true, bool drop = true) + private void Knockdown(Entity entity, TimeSpan? time, bool refresh, bool autoStand, bool drop) { // Initialize our component with the relevant data we need if we don't have it if (EnsureComp(entity, out var component))