roguelike
roguelike copied to clipboard
Bug: Launch instructions do not work
Describe the bug The instructions for installing and running the game do not result in launching the game.
To Reproduce
Steps to reproduce the behavior:
- Open the run instructions in doc/install.rst
- Follow the instructions
- Activate the virtual environment
- Attempt to run the game with
python source - The game is not launched, and no error message is produced
Instead, the game can be launched and played soundlessly by switching into the source directory and running python __init__.py. This is less than ideal.
Expected behavior The game launches when following the launch instructions.
Desktop (please complete the following information):
- OS: Debian GNU/Linux 11 (bullseye) x86_64
- Python: 3.9.2
- Arcade: 2.6.13, installed via requirements.txt per install instructions
Proposed solution Update the game to follow the example of the community RPG project:
- Install using only setup.py
- Use
> python -m modulenameor> commandnameto run the game