SteamWar/BauSystem2.0
Archiviert
12
0

Fix BlockCounter message
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2021-12-01 20:31:25 +01:00
Ursprung 75f11561b7
Commit 17d869203d

Datei anzeigen

@ -50,7 +50,7 @@ public class BlockCounter {
public String getMessage(Player player, int count, int tntCount, double countPerTNT) {
if (isActive(player)) {
return BauSystem.MESSAGE.parse("BLOCK_COUNTER_MESSAGE", player, count, tntCount, (int) (countPerTNT * 10) / 10.0);
return BauSystem.MESSAGE.parsePrefixed("BLOCK_COUNTER_MESSAGE", player, count, tntCount, (int) (countPerTNT * 10) / 10.0);
}
return null;
}