Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtomi committed Nov 11, 2022
1 parent 28596a3 commit 6c35447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/vamk/tbg/game/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private void cleanupDeadEntities() {
int entities = this.entities.size();
this.entities.removeIf(Entity::isDead);
int diff = entities - this.entities.size();
if (diff > 0) LOGGER.info("Removed %d dead entities from the board");
if (diff > 0) LOGGER.info("Removed %d dead entities from the board".formatted(diff));
}

public void destroy() {
Expand Down

0 comments on commit 6c35447

Please sign in to comment.