diff --git a/funcs/games/fourInARow.py b/funcs/games/fourInARow.py index 1099d6a..0d7b9fc 100644 --- a/funcs/games/fourInARow.py +++ b/funcs/games/fourInARow.py @@ -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]