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:
parent
acb204f551
commit
5c86d218cb
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue