Merge pull request #658 from argonui/cleanup

Bugfixes for Clean Up Helper
This commit is contained in:
BootleggerFinn 2024-04-20 21:20:21 -05:00 committed by GitHub
commit c234b71940
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -288,7 +288,9 @@ function tidyPlayerMatCoroutine()
-- only continue for playermat (1-4) if option enabled
if options["tidyPlayermats"] or i == 5 then
-- delay for animation purpose
for k = 1, 30 do coroutine.yield(0) end
for k = 1, 30 do
coroutine.yield(0)
end
-- get respective trash
local trash = guidReferenceApi.getObjectByOwnerAndType(COLORS[i], "Trash")
@ -315,7 +317,7 @@ function tidyPlayerMatCoroutine()
if obj.hasTag(IGNORE_TAG) == false
and obj.getDescription() ~= "Action Token"
and obj.hasTag("chaosBag") == false
and obj.locked == false
and (obj.locked == false or obj.hasTag("Investigator"))
and obj.interactable == true then
coroutine.yield(0)
trash.putObject(obj)
@ -326,11 +328,13 @@ function tidyPlayerMatCoroutine()
if obj.getScale().x < 0.4 then
local pos = playmatApi.transformLocalPosition(Vector(-0.865, 0.1, -0.28), COLORS[i])
obj.setPosition(pos)
coroutine.yield(0)
end
-- flip action tokens back to ready
if obj.is_face_down then
obj.flip()
coroutine.yield(0)
end
-- reset action token state