This commit is contained in:
Twentysix 2016-02-11 21:04:19 +01:00
parent 6518c6b8d8
commit 6def723347

View File

@ -86,7 +86,7 @@ class Economy:
if bid >= self.settings["SLOT_MIN"] and bid <= self.settings["SLOT_MAX"]: if bid >= self.settings["SLOT_MIN"] and bid <= self.settings["SLOT_MAX"]:
await self.slot_machine(ctx.message, bid) await self.slot_machine(ctx.message, bid)
else: 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: else:
await self.bot.say("{0} `You need an account with enough funds to play the slot machine.`".format(author.mention)) await self.bot.say("{0} `You need an account with enough funds to play the slot machine.`".format(author.mention))