Merge pull request #149 from argonui/clickable-clues

Option: Clickable clues bugfix
This commit is contained in:
Buhallin 2023-01-03 12:44:49 -08:00 committed by GitHub
commit c81ec5be93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -663,7 +663,7 @@ function clickableClues(showCounter)
local pos = self.positionToWorld({x = -1.12, y = 0.05, z = 0.7}) local pos = self.positionToWorld({x = -1.12, y = 0.05, z = 0.7})
for i = 1, clueCount do for i = 1, clueCount do
pos.y = pos.y + 0.045 * i pos.y = pos.y + 0.045 * i
TokenManager.spawnToken(pos, "clue", PLAY_ZONE_ROTATION) tokenManager.spawnToken(pos, "clue", PLAY_ZONE_ROTATION)
end end
end end
end end