merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
Showing only changes of commit 27f8af70f5 - Show all commits

View File

@@ -43,7 +43,7 @@ public class Game {
private Die die;
// The host of this game
private int host;
private int host = -1;
// The color of the active player.
private Color activeColor;
@@ -200,6 +200,15 @@ public Piece getPieceThroughUUID(UUID pieceId) {
return null;
}
/**
* This method will be used to check if this client is the host for the game.
*
* @return true or false.
*/
public boolean isHost() {
return this.host != -1;
}
/**
* This method returns the dice modifier.
*