From 3c09db844182874d7238f7bb4dbd13a796052700 Mon Sep 17 00:00:00 2001 From: quasar098 <70716985+quasar098@users.noreply.github.com> Date: Thu, 15 Jun 2023 14:29:03 -0400 Subject: [PATCH] subtle fixes --- .gitignore | 3 ++- README.md | 1 + world.py | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5f1fc1c..c0a4beb 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ .vscode build __pycache__ -assets/settings.json \ No newline at end of file +assets/settings.json +dist \ No newline at end of file diff --git a/README.md b/README.md index 88de5c8..4504481 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/world.py b/world.py index 81d1f44..d9ad34a 100644 --- a/world.py +++ b/world.py @@ -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]