diff options
author | Viljami Ilola <+@hix.fi> | 2024-03-24 12:32:42 +0200 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-03-24 12:32:42 +0200 |
commit | 749d47df38540342a7fe19029284b8115b03574a (patch) | |
tree | dbcc6c9a67644b7f73a00885cbafe8cb14dee3dd /src/sliceitoff/game | |
parent | c22159dfb5abda283d76248b474098cc2110935c (diff) |
scoring
Diffstat (limited to 'src/sliceitoff/game')
-rw-r--r-- | src/sliceitoff/game/gameplay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sliceitoff/game/gameplay.py b/src/sliceitoff/game/gameplay.py index 6869cbb..e1f17ab 100644 --- a/src/sliceitoff/game/gameplay.py +++ b/src/sliceitoff/game/gameplay.py @@ -21,7 +21,7 @@ class Gameplay: zap_sprite = self.field.slice( self.player.position, self.player.direction, - 4_500) + 4_000) if not zap_sprite: return False if pygame.sprite.spritecollideany(zap_sprite, self.enemies): |