From 7f6d610bfc3d1fabda79ab6ba5da60cf5be0521b Mon Sep 17 00:00:00 2001 From: jona605a Date: Tue, 4 Aug 2020 13:28:46 +0200 Subject: [PATCH] Update fourInARow.py --- funcs/games/fourInARow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]