added language.outputGameOverText() at line 53 Game.java
changed Method switchPlayer() and checkForTie() to private at line 71 and line 138 Game.java
This commit is contained in:
+3
-2
@@ -50,6 +50,7 @@ public class Game {
|
||||
|
||||
if(checkForWin()) {
|
||||
language.outputWinnerText(playerPlaying);
|
||||
language.outputGameOverText();
|
||||
gameFinished = true;
|
||||
} else if (checkForTie()) {
|
||||
language.outputTieText();
|
||||
@@ -67,7 +68,7 @@ public class Game {
|
||||
* Methode placeField aufgerufen.
|
||||
* Der Spieler wird automatisch gewechselt.
|
||||
*/
|
||||
public void switchPlayer() {
|
||||
private void switchPlayer() {
|
||||
if (playerPlaying == 1) {
|
||||
playerPlaying = player2;
|
||||
} else {
|
||||
@@ -134,7 +135,7 @@ public class Game {
|
||||
(gamefield.getField(field1) >= 1));
|
||||
}
|
||||
|
||||
public boolean checkForTie() {
|
||||
private boolean checkForTie() {
|
||||
return gamefield.countSetFields() == 9;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user