Fix previous commit.

Dieser Commit ist enthalten in:
Leandro 2021-07-04 23:14:08 -03:00
Ursprung b91aa3724f
Commit a1475c1c52

Datei anzeigen

@ -33,7 +33,7 @@ public class InventoryUtils {
// Try to get the value from the config file. // Try to get the value from the config file.
if (HeadDB.getInstance().getCfg().contains("ui.category." + category + ".location")) { if (HeadDB.getInstance().getCfg().contains("ui.category." + category + ".location")) {
uiLocation.put(category, HeadDB.getInstance().getCfg().getInt("ui.category." + category + ".location")); uiLocation.put(category, HeadDB.getInstance().getCfg().getInt("ui.category." + category + ".location"));
uiLocation.get(category); return uiLocation.get(category);
} }
// No valid value in the config file, return the given default. // No valid value in the config file, return the given default.