Update plugin.py (#29)

DuckHunt: Use starthunt not start in help strings.
This commit is contained in:
Vitor Luis 2020-07-20 00:55:54 +02:00 committed by GitHub
parent 5f9e786185
commit 248f520053
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ import threading, random, pickle, os, time, datetime
class DuckHunt(callbacks.Plugin): class DuckHunt(callbacks.Plugin):
""" """
A DuckHunt game for supybot. Use the "start" command to start a game. A DuckHunt game for supybot. Use the "starthunt" command to start a game.
The bot will randomly launch ducks. Whenever a duck is launched, the first The bot will randomly launch ducks. Whenever a duck is launched, the first
person to use the "bang" command wins a point. Using the "bang" command person to use the "bang" command wins a point. Using the "bang" command
when there is no duck launched costs a point. when there is no duck launched costs a point.
@ -477,7 +477,7 @@ class DuckHunt(callbacks.Plugin):
) )
else: else:
irc.reply( irc.reply(
"There is no hunt right now! You can start a hunt with the 'start'" "There is no hunt right now! You can start a hunt with the 'starthunt'"
" command" " command"
) )
else: else:
@ -1116,7 +1116,7 @@ class DuckHunt(callbacks.Plugin):
else: else:
irc.reply( irc.reply(
"There is no hunt right now! You can start a hunt with the 'start'" "There is no hunt right now! You can start a hunt with the 'starthunt'"
" command" " command"
) )
else: else: