forgot to remove debug prints. lol. lmao

This commit is contained in:
Jill 2022-09-25 15:38:21 +03:00
parent 69f38b0e3e
commit 399d6329a0
1 changed files with 0 additions and 3 deletions

View File

@ -311,13 +311,11 @@
local newFrame, idx = findFirstActorFrame(currentPath)
local newActor = findFirstActor(currentPath)
if newFrame and not (newActor and forceActor) then
print('creating frame')
table.insert(pastPaths, currentPath)
currentPath = currentPath[idx]
table.remove(pastPaths[#pastPaths], idx)
return true
elseif newActor then
print('creating actor')
table.insert(pastPaths, currentPath)
return true
else
@ -326,7 +324,6 @@
end
function oat._actor.recurseLast()
print('recurselast: hi!')
return oat._actor.recurse(true)
end