From 4fd71569efc4bde508ff43000fcee4ca86fe37f9 Mon Sep 17 00:00:00 2001 From: Ashby Issac Date: Thu, 29 Jan 2026 21:36:23 +0530 Subject: [PATCH] Hotfix: Dice rolling. --- Assets/Scripts/Gameplay/GameplayManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Gameplay/GameplayManager.cs b/Assets/Scripts/Gameplay/GameplayManager.cs index d03313c..d8f82a8 100644 --- a/Assets/Scripts/Gameplay/GameplayManager.cs +++ b/Assets/Scripts/Gameplay/GameplayManager.cs @@ -923,6 +923,6 @@ public class GameplayManager : MonoBehaviour, IBase, IBootLoader, IDataLoader { if (botTypesInGame.Contains(playerType)) return; - CanRollDice = true; + CanRollDice = state; } }