From e988d6e4ac99ffcd30caee8348685f32153c6493 Mon Sep 17 00:00:00 2001 From: Jan Laupetin Date: Fri, 12 Sep 2025 23:47:32 +0100 Subject: [PATCH] chore: disable color output in ZoneCode generation process --- src/ZoneCode.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ZoneCode.lua b/src/ZoneCode.lua index 339a7e9d..1d418539 100644 --- a/src/ZoneCode.lua +++ b/src/ZoneCode.lua @@ -305,6 +305,7 @@ function ZoneCode:project() buildmessage "Generating ZoneCode for game %{file.basename}" buildcommands { '"' .. TargetDirectoryBuildTools .. '/' .. ExecutableByOs('ZoneCodeGenerator') .. '"' + .. ' --no-color' .. ' -h "' .. path.join(path.getabsolute(ProjectFolder()), 'ZoneCode/Game/%{file.basename}/%{file.basename}_ZoneCode.h') .. '"' .. ' -c "' .. path.join(path.getabsolute(ProjectFolder()), 'ZoneCode/Game/%{file.basename}/%{file.basename}_Commands.txt') .. '"' .. ' -o "%{wks.location}/src/ZoneCode/Game/%{file.basename}/XAssets"'