Skip to content

Commit

Permalink
subtle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
quasar098 committed Jun 15, 2023
1 parent 74ccf43 commit 3c09db8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.vscode
build
__pycache__
assets/settings.json
assets/settings.json
dist
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ if you do not enjoy me using your assets, i can remove it from this project and
- i think there are sync issues idk
- keystrokes icons for space, arrow keys before reactivating arrow keys and space
- 4 key gamemode
- window icon and title (easy)

### modifiers

Expand Down
4 changes: 2 additions & 2 deletions world.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ def recurs(
)
)

assert self.future_bounces is not False, "recurs function failed"
assert len(self.future_bounces) != 0, "no recurs list"
assert self.future_bounces is not False, "Recursive bounce generation algorithm failed"
assert len(self.future_bounces) != 0, "no recurs list???"

# eliminate fully overlapping safe areas
safe_areas: list[pygame.Rect]
Expand Down

0 comments on commit 3c09db8

Please sign in to comment.