From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Wed, 23 Jul 2025 20:24:21 +0000 (-0700) Subject: Crawling Bugfix: Don't drop items when falling. (#39168) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=291f919e8e4b95f25722ccfee55f3d286f67edcd;p=space-station-14.git Crawling Bugfix: Don't drop items when falling. (#39168) Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- 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))