This commit is contained in:
Anuken
2025-05-24 23:20:54 -04:00
parent ce3590dafe
commit 2e46633bcd

View File

@@ -709,11 +709,15 @@ public class MapObjectives implements Iterable<MapObjective>, Eachable<MapObject
String out;
if(mobile){
out = state.mapLocales.containsProperty(key + ".mobile") ?
out =
state.mapLocales.containsProperty(key + ".mobile") ?
state.mapLocales.getProperty(key + ".mobile") :
Core.bundle.get(key + ".mobile", Core.bundle.get(key));
state.mapLocales.containsProperty(key) ?
state.mapLocales.getProperty(key) :
Core.bundle.get(key);
}else{
out = state.mapLocales.containsProperty(key) ?
out =
state.mapLocales.containsProperty(key) ?
state.mapLocales.getProperty(key) :
Core.bundle.get(key);
}