You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was getting an error every time i tried to run the game maybe python3-running-python2 problem However i fixed it bu by changing line 317 to for i in hit_ships:
and lines 329 : 333 to: for k in hit_ships: k.kill() for i in hit_ships[k]: i.kill() ship.score += 10
now it's working perfectly.
The text was updated successfully, but these errors were encountered:
I was getting an error every time i tried to run the game maybe python3-running-python2 problem However i fixed it bu by changing line 317 to
for i in hit_ships:
and lines 329 : 333 to:
for k in hit_ships: k.kill() for i in hit_ships[k]: i.kill() ship.score += 10
now it's working perfectly.
The text was updated successfully, but these errors were encountered: