In the readme, it says that there are other types of HumanPlayer in TA-only tests so we need to use "instanceof HumanPlayer" to check whether this player is a human player or not.
However, the isWhite/BlackPlayerHuman methods in Configuration class just use "instanceof ConsolePlayer" to check the type.
Do I need to change the already implemented methods to "instanceof HumanPlayer"?
In the readme, it says that there are other types of HumanPlayer in TA-only tests so we need to use "instanceof HumanPlayer" to check whether this player is a human player or not. However, the isWhite/BlackPlayerHuman methods in Configuration class just use "instanceof ConsolePlayer" to check the type. Do I need to change the already implemented methods to "instanceof HumanPlayer"?