From de10287482995655bea8850aa364a257e9ce9b29 Mon Sep 17 00:00:00 2001 From: vicisacat Date: Thu, 18 Apr 2024 22:59:15 +0200 Subject: mention resizing in explanation and add spacing --- .../java/de/hysky/skyblocker/skyblock/fancybars/FancyStatusBars.java | 4 ++-- src/main/resources/assets/skyblocker/lang/en_us.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/main/java/de/hysky/skyblocker/skyblock/fancybars/FancyStatusBars.java b/src/main/java/de/hysky/skyblocker/skyblock/fancybars/FancyStatusBars.java index a87871be..2f2ec000 100644 --- a/src/main/java/de/hysky/skyblocker/skyblock/fancybars/FancyStatusBars.java +++ b/src/main/java/de/hysky/skyblocker/skyblock/fancybars/FancyStatusBars.java @@ -217,8 +217,8 @@ public class FancyStatusBars { int offsetX = 0; int lessWidth = 0; if (rowSize > 1) { // Technically bars in the middle of 3+ bars will be smaller than the 2 side ones but shh - if (i==0) lessWidth = 1; - else if (i == rowSize-1) { + if (i == 0) lessWidth = 1; + else if (i == rowSize - 1) { lessWidth = 1; offsetX = 1; } else { diff --git a/src/main/resources/assets/skyblocker/lang/en_us.json b/src/main/resources/assets/skyblocker/lang/en_us.json index 63b959e5..1b81a3f5 100644 --- a/src/main/resources/assets/skyblocker/lang/en_us.json +++ b/src/main/resources/assets/skyblocker/lang/en_us.json @@ -499,7 +499,7 @@ "skyblocker.bars.config.icon": "Icon", "skyblocker.bars.config.openScreen": "Status Bars Config screen", "skyblocker.bars.config.explanationTitle": "What is this?", - "skyblocker.bars.config.explanation": "Welcome to the status bars config screen!\n\nDrag and drop the bars to snap them to an anchor (white squares) or existing bars.\nYou can right click them to edit a bunch of properties.\n\nEverything is saved when you leave", + "skyblocker.bars.config.explanation": "Welcome to the status bars config screen!\n\nDrag and drop the bars to snap them to an anchor (white squares) or existing bars.\nYou can right click them to edit a bunch of properties.\nBy hovering your mouse between 2 bars (your cursor should change), you can resize them.\n\nEverything is saved when you leave", "skyblocker.updaterepository.failed": "§cUpdating local repository failed. Remove files manually and restart game.", -- cgit