Reset UI scale to 100% when broken

This commit is contained in:
Anuken
2023-04-08 10:29:42 -04:00
parent f4fabecce7
commit 11ad5a0373
3 changed files with 12 additions and 4 deletions
@@ -794,7 +794,7 @@ public class HudFragment{
if(!obj.qualified()) continue;
String text = obj.text();
if(text != null){
if(text != null && !text.isEmpty()){
if(!first) builder.append("\n[white]");
builder.append(text);
@@ -802,7 +802,10 @@ public class HudFragment{
}
}
return builder;
//TODO: display standard status when empty objective?
if(builder.length() > 0){
return builder;
}
}
if(!state.rules.waves && state.rules.attackMode){