Open Issues Need Help
View All on GitHubAI Summary: The `/setup_reaction_role` command currently lacks explicit permission checks, allowing any user to create reaction role messages. This security vulnerability should be fixed by adding a decorator to restrict its use to administrators or users with the 'Manage Roles' permission.
AI Summary: This issue proposes to update the `roster_monitor.py` and `suggestions.py` files to use timezone-aware datetime objects for embed timestamps. Currently, they use `datetime.now()`, which can lead to inconsistencies. The suggested fix is to use `datetime.now(datetime.timezone.utc)` for better regional consistency and auditing.
AI Summary: The bot fails to load cogs when started from a different directory because it uses a relative path to find the 'cogs' folder. This means the 'cogs' folder might not exist in the current working directory, preventing cogs from being loaded. The suggested fix is to resolve the 'cogs' directory path relative to the script's location.