local fix, 1.3.0 rc1

This commit is contained in:
Tyler Murphy 2021-10-22 20:10:29 -04:00
parent 0015592730
commit 4d1fa2f90c

View file

@ -32,6 +32,6 @@ public class Localization {
LocalizationString temp = LOCAL.get(key);
if(temp == null)
return new LocalizationString(key+" missing from localization.yml");
return temp;
return new LocalizationString(temp.toString());
}
}