From 6c3bb629140c96398b7d200a379ef6d4029db2e5 Mon Sep 17 00:00:00 2001 From: Clansty Date: Tue, 24 Sep 2024 20:17:27 +0800 Subject: [PATCH] [F] Default string value --- Config.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Config.cs b/Config.cs index 7cd7c8e6..927cf329 100644 --- a/Config.cs +++ b/Config.cs @@ -39,10 +39,10 @@ namespace AquaMai public bool TestProof { get; set; } public bool HideSelfMadeCharts { get; set; } public bool SelectionDetail { get; set; } - public string CustomVersionString { get; set; } - public string CustomPlaceName { get; set; } - public string ExecOnIdle { get; set; } - public string ExecOnEntry { get; set; } + public string CustomVersionString { get; set; } = ""; + public string CustomPlaceName { get; set; } = ""; + public string ExecOnIdle { get; set; } = ""; + public string ExecOnEntry { get; set; } = ""; } public class PerformanceConfig