Added special case for unit.none

This commit is contained in:
Anuken
2018-10-24 10:31:23 -04:00
parent 7632e33975
commit de6681d00a
2 changed files with 1 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ public enum StatUnit{
items;
public String localized(){
if(this == none) return "";
return Bundles.get("text.unit." + name().toLowerCase(Locale.ROOT));
}
}