From 5b3cfc42c2c2e2b93a1508455e42e35d67dde83b Mon Sep 17 00:00:00 2001 From: Lacyway <20912169+Lacyway@users.noreply.github.com> Date: Fri, 13 Dec 2024 09:57:28 +0100 Subject: [PATCH] Change type in bugfix patch --- .../Coop/Patches/Bugfixes/PartyInfoPanel_method_3_Patch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fika.Core/Coop/Patches/Bugfixes/PartyInfoPanel_method_3_Patch.cs b/Fika.Core/Coop/Patches/Bugfixes/PartyInfoPanel_method_3_Patch.cs index a47bdaca..90569623 100644 --- a/Fika.Core/Coop/Patches/Bugfixes/PartyInfoPanel_method_3_Patch.cs +++ b/Fika.Core/Coop/Patches/Bugfixes/PartyInfoPanel_method_3_Patch.cs @@ -21,7 +21,7 @@ protected override MethodBase GetTargetMethod() public static bool Prefix(GClass1323 raidPlayer) { InventoryEquipment equipment = raidPlayer.PlayerVisualRepresentation.Equipment; - if (equipment.CurrentAddress.GetOwnerOrNull() is Player.SinglePlayerInventoryController) + if (equipment.CurrentAddress.GetOwnerOrNull() is Player.PlayerOwnerInventoryController) { return false; }