Private
Public Access
1
0

rename Min/MaxTemperatureGrowth to TemperatureMinimum/Optimal

This commit is contained in:
2026-05-25 09:21:35 +02:00
parent d7ca3f8e99
commit c5d34ec1b5
10 changed files with 76 additions and 31 deletions

View File

@@ -142,11 +142,11 @@ public class Config
// weather effects
[ProtoMember(15)]
[ConfigCommand(serverSide: true, Min = -20, Max = 20)]
public float MinTemperatureGrowth { get; set; } = 0f;
public float TemperatureMinimum { get; set; } = 0f;
[ProtoMember(16)]
[ConfigCommand(serverSide: true, Min = 0, Max = 40)]
public float MaxTemperatureGrowth { get; set; } = 10f;
public float TemperatureOptimal { get; set; } = 10f;
[ProtoMember(35)]
[ConfigCommand(serverSide: true)]