From 5fc5e280dc469509dc255cdab5d9526b8535230a Mon Sep 17 00:00:00 2001 From: xianyi Date: Thu, 21 Aug 2025 15:51:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=BB=E5=87=BB=E5=8A=9B=E4=BD=8E=E5=85=88?= =?UTF-8?q?=E6=89=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/TcgEngine/Scripts/GameLogic/GameLogic.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/TcgEngine/Scripts/GameLogic/GameLogic.cs b/Assets/TcgEngine/Scripts/GameLogic/GameLogic.cs index c2710c4..a13d740 100644 --- a/Assets/TcgEngine/Scripts/GameLogic/GameLogic.cs +++ b/Assets/TcgEngine/Scripts/GameLogic/GameLogic.cs @@ -1996,7 +1996,7 @@ namespace TcgEngine.Gameplay } } - game_data.first_player = f > l ? 0 : 1; + game_data.first_player = f < l ? 0 : 1; game_data.current_player = game_data.first_player; }