diff --git a/modules/vote.py b/modules/vote.py index 22e2aa91..728c1bd5 100644 --- a/modules/vote.py +++ b/modules/vote.py @@ -59,7 +59,7 @@ class Module(ModuleManager.BaseModule): @utils.hook("received.command.startvote", channel_only=True, min_args=1) def start_vote(self, event): """ - :help: Start a yes/no vote + :help: Start a vote :usage: :require_mode: o :permission: vote @@ -72,7 +72,7 @@ class Module(ModuleManager.BaseModule): @utils.hook("received.command.endvote", channel_only=True, min_args=1) def end_vote(self, event): """ - :help: End the current yes/no vote + :help: End a vote :usage: :require_mode: o :permission: vote @@ -90,7 +90,7 @@ class Module(ModuleManager.BaseModule): def vote(self, event): """ :help: Vote in the channel's current vote - :usage: yes|no + :usage: [choice] """ vote_id = event["args_split"][0] vote = self._get_vote(event["target"], vote_id)