From d322a82bdf7ff4be344d6c8350ad8867b4c625aa Mon Sep 17 00:00:00 2001 From: Stalen <33173619+stalengd@users.noreply.github.com> Date: Thu, 13 Jun 2024 05:17:07 +0300 Subject: [PATCH] Pets toggle internals fix (#28904) --- Content.Server/Body/Systems/InternalsSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index 0e568b77cb..922d48f13e 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -262,7 +262,7 @@ public sealed class InternalsSystem : EntitySystem // 3. in-hand tanks // 4. pocket/belt tanks - if (!Resolve(user, ref user.Comp1, ref user.Comp2, ref user.Comp3)) + if (!Resolve(user, ref user.Comp2, ref user.Comp3)) return null; if (_inventory.TryGetSlotEntity(user, "back", out var backEntity, user.Comp2, user.Comp3) && -- 2.51.2