From 313730e1b8a31293ff95af8f14f9f83b36b3525e Mon Sep 17 00:00:00 2001 From: Exp Date: Fri, 4 Sep 2020 11:29:15 +0200 Subject: [PATCH] Fixes Pills not transfering any reagents (#2016) --- .../GameObjects/Components/Chemistry/PillComponent.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Content.Server/GameObjects/Components/Chemistry/PillComponent.cs b/Content.Server/GameObjects/Components/Chemistry/PillComponent.cs index 170795c469..ce4a461b69 100644 --- a/Content.Server/GameObjects/Components/Chemistry/PillComponent.cs +++ b/Content.Server/GameObjects/Components/Chemistry/PillComponent.cs @@ -1,7 +1,6 @@ using Content.Server.GameObjects.Components.Body.Digestive; using Content.Server.GameObjects.Components.Nutrition; using Content.Server.GameObjects.Components.Utensil; -using Content.Server.Utility; using Content.Shared.Chemistry; using Content.Shared.Interfaces; using Content.Shared.Interfaces.GameObjects.Components; @@ -47,8 +46,6 @@ namespace Content.Server.GameObjects.Components.Chemistry { base.Initialize(); _contents = Owner.GetComponent(); - _transferAmount = _contents.CurrentVolume; - } bool IUse.UseEntity(UseEntityEventArgs eventArgs)