From 3ea9726189fd008852784d5ef48dd73caae99642 Mon Sep 17 00:00:00 2001 From: Tyfon <29051038+tyfon7@users.noreply.github.com> Date: Tue, 18 Jun 2024 15:50:17 -0700 Subject: [PATCH] Filter out a few griditemview places --- Patches/MultiSelectPatches.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Patches/MultiSelectPatches.cs b/Patches/MultiSelectPatches.cs index de1d9b6..7841197 100644 --- a/Patches/MultiSelectPatches.cs +++ b/Patches/MultiSelectPatches.cs @@ -3,6 +3,7 @@ using Comfort.Common; using EFT.InventoryLogic; using EFT.UI; using EFT.UI.DragAndDrop; +using EFT.UI.Insurance; using HarmonyLib; using System; using System.Collections.Generic; @@ -122,7 +123,7 @@ namespace UIFixes [PatchPostfix] public static void Postfix(ItemView __instance, PointerEventData eventData) { - if (!Settings.EnableMultiSelect.Value) + if (!Settings.EnableMultiSelect.Value || __instance is RagfairNewOfferItemView || __instance is InsuranceItemView) { return; }