Initialize random once per run
Currently, the random.seed call is made in the constructor of Game. This is not where it should be done and poses problems to mcts-simple simulations. It could also be a problem for future MCTS developments.
Initialize random seed in main.py instead of the Game constructor.