From 2616cb69e8df119c8d780ca235ca89edf5307f5e Mon Sep 17 00:00:00 2001 From: coolmankid12345 <55817627+coolmankid12345@users.noreply.github.com> Date: Sun, 24 Sep 2023 23:15:14 -0400 Subject: [PATCH] fix metamorphic glasses (#20487) Co-authored-by: coolmankid12345 --- .../Chemistry/EntitySystems/SolutionContainerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.cs index 3ab07cc49b..7ca92fab4e 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionContainerSystem.cs @@ -219,7 +219,7 @@ public sealed partial class SolutionContainerSystem : EntitySystem if (solution.GetPrimaryReagentId() is { } reagent) { - _appearance.SetData(uid, SolutionContainerVisuals.BaseOverride, reagent, appearanceComponent); + _appearance.SetData(uid, SolutionContainerVisuals.BaseOverride, reagent.ToString(), appearanceComponent); } else { -- 2.51.2