In the board class in hive.py the lables should be generated from the game_mode. Otherwise the matrix methods that depend on the lables dont work if the game mode is changed.
The lables should be auto generated from the game_mode
here you can play with the number and types of pieces
game_mode = [('QueenBee', 1), ('Ant',3), ('Beetle', 2), ('Spider', 2), ('Grasshopper', 3)]
In the board class in hive.py the lables should be generated from the game_mode. Otherwise the matrix methods that depend on the lables dont work if the game mode is changed.
The lables should be auto generated from the game_mode
here you can play with the number and types of pieces game_mode = [('QueenBee', 1), ('Ant',3), ('Beetle', 2), ('Spider', 2), ('Grasshopper', 3)]
game_mode = [('Bee', 1), ('Beetle', 2)]