From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 20 Apr 2024 18:24:52 +0000 (-0700) Subject: Fix for inventory and belt not opening (#27179) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=6ad039d0f9a13a3bcedf400b3b89f2eb186631ec;p=space-station-14.git Fix for inventory and belt not opening (#27179) Co-authored-by: Plykiya --- diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 0176999bba..2021dfe2de 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -111,8 +111,8 @@ public abstract class SharedStorageSystem : EntitySystem SubscribeLocalEvent(OnReclaimed); CommandBinds.Builder - .Bind(ContentKeyFunctions.OpenBackpack, InputCmdHandler.FromDelegate(HandleOpenBackpack)) - .Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt)) + .Bind(ContentKeyFunctions.OpenBackpack, InputCmdHandler.FromDelegate(HandleOpenBackpack, handle: false)) + .Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt, handle: false)) .Register(); UpdatePrototypeCache();