From 6ed77509c130943a924f76d4488b33403059f8bc Mon Sep 17 00:00:00 2001 From: Fishfish458 <47410468+Fishfish458@users.noreply.github.com> Date: Sun, 20 Feb 2022 00:01:59 -0600 Subject: [PATCH] Pill fix (#6817) Co-authored-by: fishfish458 --- Content.Server/Chemistry/Components/ChemMasterComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Chemistry/Components/ChemMasterComponent.cs b/Content.Server/Chemistry/Components/ChemMasterComponent.cs index 4be4ccb0c7..3f2d98af70 100644 --- a/Content.Server/Chemistry/Components/ChemMasterComponent.cs +++ b/Content.Server/Chemistry/Components/ChemMasterComponent.cs @@ -341,7 +341,7 @@ namespace Content.Server.Chemistry.Components var actualVolume = FixedPoint2.Min(individualVolume, FixedPoint2.New(50)); for (int i = 0; i < pillAmount; i++) { - var pill = _entities.SpawnEntity("pill", _entities.GetComponent(Owner).Coordinates); + var pill = _entities.SpawnEntity("Pill", _entities.GetComponent(Owner).Coordinates); //Adding label LabelComponent labelComponent = pill.EnsureComponent();