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 58bcaa3 commit 0b2f274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WorldOfTheThreeKingdoms/GameObjects/Architecture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13514,7 +13514,7 @@ public int ExpectedFund
{
return ExpectedFundCache;
}
int num = this.Commerce + ((int)((Math.Pow((double)this.Population, 0.6) * Math.Pow((double)this.Commerce, 0.8)) / 59.0));
int num = this.Commerce + ((int)((Math.Pow((double)this.Population, 0.6) * Math.Pow((double)this.Commerce, 0.8)) / 49.0));
num += this.IncrementOfMonthFund;
num += (int)(this.RateIncrementOfMonthFund * num);
if ((this.LocationState.StateAdmin != null) && this.LocationState.StateAdmin.StateAdminEffectAvail())
Expand Down

0 comments on commit 0b2f274

Please sign in to comment.