From 7f8e47b843da95292e9d54a95b938cf38c758014 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 4 Jun 2024 18:14:53 +0300 Subject: [PATCH] Update SharedStorageSystem.cs --- Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 3210d2b929..552b930649 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -357,7 +357,7 @@ public abstract class SharedStorageSystem : EntitySystem if (HasComp(uid)) return; - if (storageComp.CP14Ignorelist != null && storageComp.CP14Ignorelist.IsValid(args.Used)) + if (storageComp.CP14Ignorelist != null && _whitelistSystem.IsWhitelistFail(storageComp.CP14Ignorelist, args.Used)) { return; }