Four in a row deletes old images

This commit is contained in:
NikolajDanger
2020-07-30 12:10:10 +02:00
parent c6a7f35602
commit 2c01464157
2 changed files with 14 additions and 5 deletions

View File

@ -59,8 +59,8 @@ def parseFourInARow(command, channel, user):
elif command.startswith(" place"):
commands = command.split(" ")
try:
return placePiece(channel,int(commands[2]),int(commands[3])-1)
return placePiece(channel,int(commands[2]),int(commands[3])-1), True
except:
return "I didn't quite get that", False
return "I didn't quite get that", False, True
else:
return "I didn't get that", False
return "I didn't get that", False, True