Fix extra clue in red board clue counter
continuous-integration/drone/tag Build is passing Details

Actually a piece of wood siding, but rather than fix this in general,
I'm just decrementing the starting value by one
This commit is contained in:
Adam Goldsmith 2022-11-26 20:42:49 -05:00
parent c4222d6315
commit c31e508061
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ end
--Activated once per second, counts items in bowls
function countItems()
local totalValue = -1
local totalValue = -2
local countableItems = findValidItemsInSphere()
for ind, entry in ipairs(countableItems) do
local descValue = tonumber(entry.hit_object.getDescription())