From 58bcaa36902a6229e69de2f686524e0d051e65b7 Mon Sep 17 00:00:00 2001 From: Peter WONG Date: Mon, 11 Mar 2024 20:36:18 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AA=BF=E6=95=B4=E6=AD=A6=E5=B0=87=E4=BF=AE?= =?UTF-8?q?=E7=B7=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WorldOfTheThreeKingdoms/GameObjects/Person.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WorldOfTheThreeKingdoms/GameObjects/Person.cs b/WorldOfTheThreeKingdoms/GameObjects/Person.cs index 3bbc3421..184b75d9 100644 --- a/WorldOfTheThreeKingdoms/GameObjects/Person.cs +++ b/WorldOfTheThreeKingdoms/GameObjects/Person.cs @@ -11763,7 +11763,7 @@ public int Salary public void ArchitectureFacilityEvent() { - if (Tiredness <= 0 && Fund >= Session.Parameters.TrainAbilityCost && LocationArchitecture != null && GameObject.Random(10) == 0) + if (Fund >= Session.Parameters.TrainAbilityCost && LocationArchitecture != null && GameObject.Random(5) == 0) { var priorities = new Dictionary { { "command", LocationArchitecture.CommandTrainingFacilityRate > 0 && Tiredness < 5 ? Command * 10000 / (commandExperience + 1000) : 0 },