-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Commands do not yell in #yelling #160
Comments
I've decided to comb through the code for a bit. I discovered that commands that output texts calls |
Thanks for looking into this! I don't think that this is the issue, as I don't blame you for being confused. I think the documentation for Once again, thank you for having a look into this. If you want to have a go at making certain commands yell, I'd suggest looking if message.channel == discord.utils.get(
self.bot.uqcs_server.channels, name=YELLING_CHANNEL_NAME
):
await message.reply(f"Nice haiku:\n{haiku}".upper())
else:
await message.reply(f"Nice haiku:\n{haiku}") Hopefully it should just be about going through all the interesting commands and doing something similar. Feel free to assign yourself to this issue if you want to have a crack. |
Ah, not quite (yet another example of how the What it actually does is checks through every argument on the command it's attached to, and then if its a string, requires it to be UPPERCASE in the yelling channel. Effectively, ensures that someone can't |
Commands such as /weekisit do not yell in #yelling.
The text was updated successfully, but these errors were encountered: