From de6b387db85f3f611a3f7e9a0aa13fde13533709 Mon Sep 17 00:00:00 2001 From: astog Date: Sat, 18 Mar 2023 07:50:03 -0500 Subject: [PATCH] Hidden a print statement Was spamming logs too much --- Base/Assets/UI/minimappanel.lua | 6 +++--- Lenses/Builder/BuilderLens_Support.lua | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Base/Assets/UI/minimappanel.lua b/Base/Assets/UI/minimappanel.lua index 93b667d..d2d071f 100644 --- a/Base/Assets/UI/minimappanel.lua +++ b/Base/Assets/UI/minimappanel.lua @@ -977,10 +977,10 @@ function SetModLens() elseif funNonStandard ~= nil then funNonStandard() else - print("ERROR: No Plot Color Function") + print("WARN: No Plot Color Function") end else - print("ERROR: Given lens has no entry") + print("WARN: Given lens has no entry") end end @@ -995,7 +995,7 @@ function SetModLensHexes(colorPlot:table) end end else - print("ERROR: Invalid colorPlot table") + print("WARN: Invalid colorPlot table") end end diff --git a/Lenses/Builder/BuilderLens_Support.lua b/Lenses/Builder/BuilderLens_Support.lua index aa6ee8c..231b617 100644 --- a/Lenses/Builder/BuilderLens_Support.lua +++ b/Lenses/Builder/BuilderLens_Support.lua @@ -419,7 +419,7 @@ function plotHasCorrectImprovement(pPlot:table) end function plotWorkedByCitizen(pPlot:table) - print("Checking worked by for " .. pPlot:GetIndex()) + -- print("Checking worked by for " .. pPlot:GetIndex()) return pPlot:GetWorkerCount() > 0 end