Describe the bug
in app.py:200 the variable monsters should always have a length of 0. Sometimes it doesn't.
To Reproduce
Steps to reproduce the behavior:
- invoke
screen.generate_screen
print(monsters) in app.add_sprites
- Notice it is not empty.
Expected behavior
Argument is never passed anywhere in the code. Should default to the value in the function definition (e.g. empty List). Does not.
Desktop (please complete the following information):
Additional context
There's a half dozen other places in the code where app.screen.monsters is being set to an empty list, and they're all being ignored too, despite the fact that it seems to work in maps.load
Describe the bug
in app.py:200 the variable
monstersshould always have a length of 0. Sometimes it doesn't.To Reproduce
Steps to reproduce the behavior:
screen.generate_screenprint(monsters)inapp.add_spritesExpected behavior
Argument is never passed anywhere in the code. Should default to the value in the function definition (e.g. empty List). Does not.
Desktop (please complete the following information):
Additional context
There's a half dozen other places in the code where
app.screen.monstersis being set to an empty list, and they're all being ignored too, despite the fact that it seems to work inmaps.load