From 58812c6ae7b7ad70f4abe0917dc6a54722938996 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Wed, 6 Sep 2023 19:18:11 +0100 Subject: [PATCH] fix weldable (#19878) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Content.Server/Construction/Conditions/StorageWelded.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Construction/Conditions/StorageWelded.cs b/Content.Server/Construction/Conditions/StorageWelded.cs index 8758a8617d..ba0927ffa3 100644 --- a/Content.Server/Construction/Conditions/StorageWelded.cs +++ b/Content.Server/Construction/Conditions/StorageWelded.cs @@ -15,7 +15,7 @@ namespace Content.Server.Construction.Conditions public bool Condition(EntityUid uid, IEntityManager entityManager) { - return entityManager.System().IsWelded(uid); + return entityManager.System().IsWelded(uid) == Welded; } public bool DoExamine(ExaminedEvent args)