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 },