mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-09 04:38:55 -05:00
Typos
This commit is contained in:
parent
291ef3e28e
commit
1f846c1409
@ -71,7 +71,7 @@ class Economy:
|
|||||||
self.add_money(id, self.settings["PAYDAY_CREDITS"])
|
self.add_money(id, self.settings["PAYDAY_CREDITS"])
|
||||||
await self.bot.say("{} `Here, take some credits. Enjoy! (+{} credits!)`".format(author.mention, str(self.settings["PAYDAY_CREDITS"])))
|
await self.bot.say("{} `Here, take some credits. Enjoy! (+{} credits!)`".format(author.mention, str(self.settings["PAYDAY_CREDITS"])))
|
||||||
else:
|
else:
|
||||||
await self.bot.say("{} `You need an account to receive credits. (!economy)`".format(author.mention))
|
await self.bot.say("{} `You need an account to receive credits.`".format(author.mention))
|
||||||
|
|
||||||
@commands.command(pass_context=True)
|
@commands.command(pass_context=True)
|
||||||
async def payouts(self, ctx):
|
async def payouts(self, ctx):
|
||||||
|
|||||||
@ -106,7 +106,7 @@ class General:
|
|||||||
"""
|
"""
|
||||||
question = " ".join(question)
|
question = " ".join(question)
|
||||||
if question.endswith("?") and question != "?":
|
if question.endswith("?") and question != "?":
|
||||||
return await self.bot.say("```" + randchoice(self.ball) + "```")
|
return await self.bot.say("`" + randchoice(self.ball) + "`")
|
||||||
else:
|
else:
|
||||||
return await self.bot.say("That doesn't look like a question.")
|
return await self.bot.say("That doesn't look like a question.")
|
||||||
|
|
||||||
@ -200,7 +200,8 @@ class General:
|
|||||||
"""Starts/stops a poll
|
"""Starts/stops a poll
|
||||||
|
|
||||||
Usage example:
|
Usage example:
|
||||||
poll Is this a poll?;Yes;No;Maybe"""
|
poll Is this a poll?;Yes;No;Maybe
|
||||||
|
poll stop"""
|
||||||
message = ctx.message
|
message = ctx.message
|
||||||
if len(text) == 1:
|
if len(text) == 1:
|
||||||
if text[0].lower() == "stop":
|
if text[0].lower() == "stop":
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user