mirror of
https://github.com/n0remac/game-jam-2020.git
synced 2025-12-16 14:10:03 -06:00
Fix formatting on condition main:212
This commit is contained in:
@@ -209,8 +209,12 @@ class Game(arcade.Window):
|
||||
bullet.remove_from_sprite_lists()
|
||||
|
||||
# If the bullet flies off-screen, remove it. TEMP change to range calc
|
||||
if (bullet.bottom < self.view_bottom or bullet.top > self.view_bottom+Config.SCREEN_HEIGHT
|
||||
or bullet.right > self.view_left+Config.SCREEN_WIDTH or bullet.left < self.view_left):
|
||||
if (
|
||||
bullet.bottom < self.view_bottom or
|
||||
bullet.top > self.view_bottom+Config.SCREEN_HEIGHT or
|
||||
bullet.right > self.view_left+Config.SCREEN_WIDTH or
|
||||
bullet.left < self.view_left
|
||||
):
|
||||
bullet.remove_from_sprite_lists()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user