1
0
Fork 0
mirror of synced 2024-06-23 08:40:41 +12:00

Removing deleting of the game, as I'm still not sure where the issue is

This commit is contained in:
Phxntxm 2016-08-14 18:46:10 -05:00
parent 69d622a7af
commit 7ccc78a8ae

View file

@ -89,10 +89,10 @@ class Hangman:
fmt += str(game)
if game.win:
fmt += " You guys got it! The word was `{}`".format(game.word)
del self.games[ctx.message.server.id]
#del self.games[ctx.message.server.id]
elif game.failed:
fmt += " Sorry, you guys failed...the word was `{}`".format(game.word)
del self.games[ctx.message.server.id]
#del self.games[ctx.message.server.id]
else:
fmt += str(game)