From 1d7928101b9be76413c3884132c47e225d9799de Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Wed, 8 Jul 2020 16:44:56 +0200 Subject: [PATCH] Fix change that was lost in disposals translation --- .../GameObjects/Components/Projectiles/ThrownItemComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameObjects/Components/Projectiles/ThrownItemComponent.cs b/Content.Server/GameObjects/Components/Projectiles/ThrownItemComponent.cs index ee8d2cb53c..5bc7f4660d 100644 --- a/Content.Server/GameObjects/Components/Projectiles/ThrownItemComponent.cs +++ b/Content.Server/GameObjects/Components/Projectiles/ThrownItemComponent.cs @@ -48,7 +48,7 @@ namespace Content.Server.GameObjects.Components private void StopThrow() { - if (Owner.Deleted) + if (Deleted) { return; }