Skip to content

Commit 4dc7800

Browse files
committed
Fixed scoreboard on FUll Game is showing waiting stage instead of starting
1 parent 41afb86 commit 4dc7800

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
### 1.3.16 Release (04.03.2025)
1+
### 1.3.18 Release (xx.03.2025)
2+
* Fixed scoreboard on FUll Game is showing waiting stage instead of starting
3+
4+
### 1.3.17 Release (04.03.2025)
25
* Changed Scoreboard API (now paket based) (Thanks MrMicky-FR FastBoard)
36
* Changed Scoreboard on lower 1.12.2 now supports 30 chars
47
* Changed Scoreboard on 1.13+ now supports unlimited chars
@@ -9,7 +12,7 @@
912
* Fixed Progress must be between 0 and 1
1013
* Fixed ItemBuilder.glowEffect
1114

12-
### (1.3.11-)1.3.15 Release (17.02.2025)
15+
### (1.3.11-)1.3.16 Release (17.02.2025)
1316
* Added 1.21.1-4 support
1417
* Added (3) new ConfigOptions for ArmorStands (BLOCK_IN_GAME_ARMOR_STAND_DESTROY, BLOCK_IN_GAME_ARMOR_STAND_CHECK, BLOCK_IN_GAME_ARMOR_STAND_INTERACT)
1518
* Fixed arena start time divider did not match from config.yml

MiniGamesBox Classic/src/main/java/plugily/projects/minigamesbox/classic/arena/managers/PluginScoreboardManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public void stopAllScoreboards() {
9494

9595
@Override
9696
public List<String> getScoreboardLines() {
97-
return new ArrayList<>(plugin.getLanguageManager().getLanguageList(arena.getArenaState() == IArenaState.FULL_GAME ? "Scoreboard.Content.Waiting"
97+
return new ArrayList<>(plugin.getLanguageManager().getLanguageList(arena.getArenaState() == IArenaState.FULL_GAME ? "Scoreboard.Content.Starting"
9898
: "Scoreboard.Content." + arena.getArenaState().getFormattedName()));
9999
}
100100

0 commit comments

Comments
 (0)