From 9129164123779bdb47e7c9d456485cc5157f9d65 Mon Sep 17 00:00:00 2001 From: Jamie Greunbaum Date: Thu, 7 May 2026 15:30:45 -0400 Subject: [PATCH] Fixed location board buttons not being disabled despite looking disabled. --- .../Host Card Interfaces/HostCardRecoverTheLootInterface.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/UdonSharp/Host Card Interfaces/HostCardRecoverTheLootInterface.cs b/Assets/UdonSharp/Host Card Interfaces/HostCardRecoverTheLootInterface.cs index c974742..2ae3fff 100644 --- a/Assets/UdonSharp/Host Card Interfaces/HostCardRecoverTheLootInterface.cs +++ b/Assets/UdonSharp/Host Card Interfaces/HostCardRecoverTheLootInterface.cs @@ -52,7 +52,7 @@ public class HostCardRecoverTheLootInterface : HostCardInterfaceBase for (int i = 0; i < ChoiceButtons.Length; i++) { - ChoiceButtons[i].enabled = !_DisabledButtons[i]; + ChoiceButtons[i].enabled = !_DisabledButtons[i] && Activate; if (Activate) _SetActiveButtonColour(i, _DisabledButtons[i]); else