游戏达人
  
- 贡献度
- 270
- 金元
- 17919
- 积分
- 2872
- 精华
- 0
- 注册时间
- 2014-11-30
|
本帖最后由 fanvalen 于 2024-7-7 21:40 编辑
OxyfernConfig
氧气输出量new ElementConverter.OutputElement(0.031250004f, SimHashes.Oxygen, 0f, true, false, 0f, 1f, 0.75f, byte.MaxValue, 0)
改成
new ElementConverter.OutputElement(0.5f, SimHashes.Oxygen, 0f, true, false, 0f, 1f, 0.75f, byte.MaxValue, 0)
Oxyfern.SetConsumptionRate
二氧化碳吸收量
public void SetConsumptionRate()
{
if (this.receptacleMonitor.Replanted)
{
this.elementConsumer.consumptionRate = 0.00062500004f;
return;
}
this.elementConsumer.consumptionRate = 0.00015625001f;
}
改成
public void SetConsumptionRate()
{
if (this.receptacleMonitor.Replanted)
{
this.elementConsumer.consumptionRate = 0.6f;
return;
}
this.elementConsumer.consumptionRate = 0.5;
}
|
|