From b4103bfc250be5ffeb513d22c0c7d5111d5e2af8 Mon Sep 17 00:00:00 2001 From: Valentin Barat Date: Thu, 25 Apr 2024 00:52:40 +0200 Subject: [PATCH] Made base max ban duration to 1day --- Config.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config.cs b/Config.cs index 38326d3..15d4a53 100644 --- a/Config.cs +++ b/Config.cs @@ -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;