Skip to content

Commit

Permalink
Rename Method "AfterCombat"
Browse files Browse the repository at this point in the history
  • Loading branch information
2000eBe committed May 4, 2024
1 parent 169ed3d commit 8f1d8af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/CombatSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ public boolean startCombatRound(PlayerCharacter player, List<Monster> monsters)
}

}
return AfterCombat();
return ContinueGameAfterCombat();
}

private boolean AfterCombat() {
private boolean ContinueGameAfterCombat() {
GameUtility.printSeperator(30);
System.out.println("Herzlichen Glückwunsch! Du hast alle Gefahren der Etage gemeistert");
if (GameLogic.isTowerPlayable){
Expand Down

0 comments on commit 8f1d8af

Please sign in to comment.