Update fourInARow.py

This commit is contained in:
jona605a
2020-08-04 13:28:46 +02:00
parent af7749c6b9
commit 7f6d610bfc

View File

@ -44,7 +44,7 @@ def fourInARowStart(channel, user, opponent):
except:
# Opponent is another player
difficulty = 5
difftext = ""
diffText = ""
board = [ [ 0 for i in range(columnCount) ] for j in range(rowCount) ]
players = [user,opponent]