From 19c26158fe51df06ff307623be6a3b1865b43c59 Mon Sep 17 00:00:00 2001 From: pongo1231 Date: Wed, 7 Feb 2024 00:25:04 +0000 Subject: [PATCH] ConfigApp: Turn Info constants into actual consts --- ConfigApp/Info.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ConfigApp/Info.cs b/ConfigApp/Info.cs index 8c2af0698..f0f4e9355 100644 --- a/ConfigApp/Info.cs +++ b/ConfigApp/Info.cs @@ -2,8 +2,8 @@ { public static class Info { - public static string VERSION = "2.1-devel"; + public const string VERSION = "2.1-devel"; - public static string WORKSHOP_DEFAULT_URL = "https://chaos.gopong.dev"; + public const string WORKSHOP_DEFAULT_URL = "https://chaos.gopong.dev"; } }