From 75ee39f63cb22c934fe39824585a369dcbfdcfc9 Mon Sep 17 00:00:00 2001 From: Toastie Date: Fri, 27 Dec 2024 03:27:37 +1300 Subject: [PATCH] Fixed old property in default template --- Commands/InterviewTemplateCommands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Commands/InterviewTemplateCommands.cs b/Commands/InterviewTemplateCommands.cs index f4916f0..9a21210 100644 --- a/Commands/InterviewTemplateCommands.cs +++ b/Commands/InterviewTemplateCommands.cs @@ -20,7 +20,7 @@ namespace SupportChild.Commands; [Description("Administrative commands.")] public class InterviewTemplateCommands { - private static string jsonSchema = Utilities.ReadManifestData("Interviews.interview_template.schema.json"); + private static readonly string jsonSchema = Utilities.ReadManifestData("Interviews.interview_template.schema.json"); [RequireGuild] [Command("get")] @@ -57,7 +57,7 @@ public class InterviewTemplateCommands " \"interview\":\n" + " {\n" + " \"message\": \"\",\n" + - " \"type\": \"\",\n" + + " \"message-type\": \"\",\n" + " \"color\": \"\",\n" + " \"paths\":\n" + " {\n" +