Skip to content

Commit

Permalink
Hidden a print statement
Browse files Browse the repository at this point in the history
Was spamming logs too much
  • Loading branch information
astog committed Mar 18, 2023
1 parent c49081f commit de6b387
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Base/Assets/UI/minimappanel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -995,7 +995,7 @@ function SetModLensHexes(colorPlot:table)
end
end
else
print("ERROR: Invalid colorPlot table")
print("WARN: Invalid colorPlot table")
end
end

Expand Down
2 changes: 1 addition & 1 deletion Lenses/Builder/BuilderLens_Support.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit de6b387

Please sign in to comment.