Made base max ban duration to 1day

This commit is contained in:
Valentin Barat
2024-04-25 00:52:40 +02:00
parent a0b2e59357
commit b4103bfc25

View File

@@ -59,7 +59,7 @@ namespace CS2_SimpleAdmin
public bool DisableDangerousCommands { get; set; } = true;
[JsonPropertyName("MaxBanDuration")]
public int MaxBanDuration { get; set; } = 60 * 24 * 7; // 7 days
public int MaxBanDuration { get; set; } = 60 * 24; // 1 day
[JsonPropertyName("BanType")]
public int BanType { get; set; } = 1;