The player ship in my game suddenly lost it's collision against enemies. I've looked all over in the code but can't find the issue.

1


The collision call in your update_game() function is treating ship like it's a table of ships rather than the ship itself. So you have the collision check wrapped in a for loop call that will never actually fire (262 on tab 2)
for myship in all(ship) do ... end |
You can solve this by removing the start and end of the for loop entirely and doing the collision check with ship instead of myship. Similarly, right below that you do the same for loop around the ship explosion check. You should remove the start and end of that for loop as well.
[Please log in to post a comment]