Merge pull request #2 from Dumpster-Studios/updates

Fix Issue #1
This commit is contained in:
Jordan Snelling 2021-12-23 04:51:28 +00:00 committed by GitHub
commit 62316e03f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -222,6 +222,8 @@ function invector.ai.think(self)
controls.up = false controls.up = false
controls.down = true controls.down = true
controls.jump = false controls.jump = false
if cross == nil then
else
if cross.y > 0 then if cross.y > 0 then
controls.left = false controls.left = false
controls.right = true controls.right = true
@ -230,6 +232,7 @@ function invector.ai.think(self)
controls.left = true controls.left = true
end end
end end
end
return thonk_timer_new+bonus_thonk_time return thonk_timer_new+bonus_thonk_time
end end