初级玩家

- 贡献度
- 6
- 金元
- 621
- 积分
- 86
- 精华
- 0
- 注册时间
- 2021-10-1
|
修改的类 TH20.FinanceManager
修改的函数 FinanceManager 的构造函数
public FinanceManager(FinanceManager.Config config, Level level)
{
this._config = config;
this._level = level;
this._staffToPay = new List<Staff>();
this._priceModifiers = new PriceModifiers();
this.ModifyBalance(new FinanceManager.ModifyBalanceParams
{
Amount = config.GetInitialBalance() + 20000000 // 先表贪心, 初始金钱加 2千万
});
level.PostConstruct = (System.Action)Delegate.Combine(level.PostConstruct, new System.Action(this.PostConstruct));
this.Initialise();
}
修改的游戏版本是 1.17.41111, 其他版本没试过,大家喜欢就收好
|
|