🧹 Smaal clean-up with connect four
Removing the unused function in gameLoops and changing the class name to start with a capital letter
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
from .invest import Invest
|
||||
from .trivia import Trivia
|
||||
from .blackjack import Blackjack
|
||||
from .connectFour import connectFour
|
||||
from .connectFour import ConnectFour
|
||||
from .gameLoops import GameLoops
|
||||
from .hangman import Hangman
|
||||
from .hex import HexGame
|
||||
@ -13,7 +13,7 @@ class Games():
|
||||
self.invest = Invest(bot)
|
||||
self.trivia = Trivia(bot)
|
||||
self.blackjack = Blackjack(bot)
|
||||
self.connectFour = connectFour(bot)
|
||||
self.connectFour = ConnectFour(bot)
|
||||
self.gameLoops = GameLoops(bot)
|
||||
self.hangman = Hangman(bot)
|
||||
self.hex = HexGame(bot)
|
||||
|
Reference in New Issue
Block a user