1
0
Fork 0
mirror of synced 2024-09-30 01:06:58 +13:00

Corrected syntax error

This commit is contained in:
Phxntxm 2016-08-14 18:26:32 -05:00
parent 4117583c1d
commit 1759548e1b

View file

@ -72,7 +72,7 @@ class Hangman:
if not game: if not game:
await self.bot.say("There are currently no hangman games running!") await self.bot.say("There are currently no hangman games running!")
return return
if ctx.message.author = game.creator: if ctx.message.author == game.creator:
await self.bot.say("You can't guess at your own hangman gam! :S") await self.bot.say("You can't guess at your own hangman gam! :S")
return return