Skip to content

Commit

Permalink
調整武將修練
Browse files Browse the repository at this point in the history
  • Loading branch information
luiges90 committed Mar 11, 2024
1 parent 9af94e3 commit 58bcaa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WorldOfTheThreeKingdoms/GameObjects/Person.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<string, float> {
{ "command", LocationArchitecture.CommandTrainingFacilityRate > 0 && Tiredness < 5 ? Command * 10000 / (commandExperience + 1000) : 0 },
Expand Down

0 comments on commit 58bcaa3

Please sign in to comment.