This commit is contained in:
Trixkz 2021-11-26 22:36:12 -05:00
parent 03b61cc2ad
commit 3abd7a5678
2 changed files with 2 additions and 2 deletions

View File

@ -286,7 +286,7 @@ public class Game {
}
}
public String getNextTierString(int amount) {
public String getNextGeneratorTierString(int amount) {
Map<Double, String> toCalculate = new HashMap<>();
toCalculate.put(5D, "&bDiamond &cII");
toCalculate.put(8D, "&aEmerald &cII");

View File

@ -219,7 +219,7 @@ public class ScoreboardProvider implements BoardAdapter {
lines.add(CC.scoreboardBar);
lines.add("&fDuration: &d" + game.getDuration());
lines.add("");
lines.add(game.getNextTierString(game.getDurationTimer()));
lines.add(game.getNextGeneratorTierString(game.getDurationTimer()));
lines.add("");
if (yourTeam.isHasBed()) {
lines.add("&7[" + yourTeam.getPlayerTeam().getChatColor() + yourTeam.getPlayerTeam().getSmallName() + "&7] &a&l✓ &7(You)");