From 1adff7ffe3c5a38d795c2a64a66eef72939951b8 Mon Sep 17 00:00:00 2001 From: Daneel53 Date: Wed, 4 Feb 2026 15:46:41 +0100 Subject: [PATCH] Update DefaultCommands.cs Change the error message of the console command startquest when the creation of a quest is not possible. --- .../Game/Addons/UnityConsole/Console/Scripts/DefaultCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Game/Addons/UnityConsole/Console/Scripts/DefaultCommands.cs b/Assets/Game/Addons/UnityConsole/Console/Scripts/DefaultCommands.cs index c9339a50cf..d675df1149 100644 --- a/Assets/Game/Addons/UnityConsole/Console/Scripts/DefaultCommands.cs +++ b/Assets/Game/Addons/UnityConsole/Console/Scripts/DefaultCommands.cs @@ -2277,7 +2277,7 @@ public static string Execute(params string[] args) } else { - return "Quest ID '" + args[0] + "' could not be found"; + return "Quest ID '" + args[0] + "': not found, or parsing error (see quest_log.txt)"; } } }