From c31e5080616c9a96dddae984b4efd214982ef9cc Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sat, 26 Nov 2022 20:42:49 -0500 Subject: [PATCH] Fix extra clue in red board clue counter Actually a piece of wood siding, but rather than fix this in general, I'm just decrementing the starting value by one --- unpacked/Custom_Model 37be78.ttslua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unpacked/Custom_Model 37be78.ttslua b/unpacked/Custom_Model 37be78.ttslua index 8334cbdcb..826d71e3a 100644 --- a/unpacked/Custom_Model 37be78.ttslua +++ b/unpacked/Custom_Model 37be78.ttslua @@ -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())