fix weldable (#19878)

Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
deltanedas
2023-09-06 19:18:11 +01:00
committed by GitHub
parent 3269438ea8
commit 58812c6ae7

View File

@@ -15,7 +15,7 @@ namespace Content.Server.Construction.Conditions
public bool Condition(EntityUid uid, IEntityManager entityManager)
{
return entityManager.System<WeldableSystem>().IsWelded(uid);
return entityManager.System<WeldableSystem>().IsWelded(uid) == Welded;
}
public bool DoExamine(ExaminedEvent args)