From 6def72334745a2c2b01ae13c93e5de0d69af6c1d Mon Sep 17 00:00:00 2001 From: Twentysix Date: Thu, 11 Feb 2016 21:04:19 +0100 Subject: [PATCH] Typo --- cogs/economy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/economy.py b/cogs/economy.py index b16fb170e..f6e773ea2 100644 --- a/cogs/economy.py +++ b/cogs/economy.py @@ -86,7 +86,7 @@ class Economy: if bid >= self.settings["SLOT_MIN"] and bid <= self.settings["SLOT_MAX"]: await self.slot_machine(ctx.message, bid) else: - await self.bot.say("{} `Bid must be between {0} and {1}.`".format(author.mention, self.settings["SLOT_MIN"], self.settings["SLOT_MAX"])) + await self.bot.say("{0} `Bid must be between {1} and {2}.`".format(author.mention, self.settings["SLOT_MIN"], self.settings["SLOT_MAX"])) else: await self.bot.say("{0} `You need an account with enough funds to play the slot machine.`".format(author.mention))