-
Notifications
You must be signed in to change notification settings - Fork 4
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
Polls #11
Comments
No, but it returns a |
Most implementations of polling won't work when the bot is down. Do you have any ideas for one that will? |
Ah I found the |
I think a reactions implementation will be the best, with in the future optional time limits that will can tracked by a tokio thread. This way we simply get the votes at the end of the limit and not use events |
A poll functionality allows users to input choices that can then be voted on by the public.
Issues
The primary difficulty is getting user input back, some bots use reaction but
ctx.say()
does not return a message as that message could actually be ephemeral. The harder way would probably be reactions and they have the downside of not allowing for voting while the bot is shut down.The text was updated successfully, but these errors were encountered: