This commit is contained in:
sharlotte
2021-08-23 17:17:26 +09:00
parent ca8027de29
commit 584ec8a2aa

View File

@@ -937,7 +937,9 @@ public class HudUi {
table.table(Tex.underline, tx -> { table.table(Tex.underline, tx -> {
if(settings.getBool("emptywave") && state.rules.spawns.find(g -> g.getSpawned(j) > 0) == null) { if(settings.getBool("emptywave") && state.rules.spawns.find(g -> g.getSpawned(j) > 0) == null) {
tx.center(); tx.center();
tx.add("[lightgray]<Empty>[]"); Label label = new Label("[lightgray]<Empty>[]");
label.setFontScale(modUiScale);
tx.add(label);
return; return;
} }