Skip to content

Commit

Permalink
new damage number system
Browse files Browse the repository at this point in the history
  • Loading branch information
mklemmingen committed Jan 8, 2024
1 parent 3dc55c2 commit 77c8c25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/com/boomchess/game/BoomChess.java
Original file line number Diff line number Diff line change
Expand Up @@ -672,10 +672,10 @@ private static void loadAllAssets() {
font.getData().setScale(2f);
sliderSize = 4f;
} else if (tileSize > 100) {
font.getData().setScale(1.5f);
font.getData().setScale(1.75f);
sliderSize = 2.5f;
} else if (tileSize > 50){
font.getData().setScale(1);
font.getData().setScale(1.5f);
sliderSize = 1.5f;
} else {
font.getData().setScale(1f);
Expand Down

0 comments on commit 77c8c25

Please sign in to comment.