bugfix: ignore case with boolean config values.

This commit is contained in:
2022-06-06 03:21:27 -04:00
parent d89cd97eb6
commit d5d957a910
3 changed files with 3 additions and 3 deletions
@@ -349,7 +349,7 @@ public enum MaintenanceManager {
// Run maintenance on player buildings
if ((boolean) ConfigManager.MB_WORLD_MAINTENANCE.getValue().equals("true"))
if ((boolean) ConfigManager.MB_WORLD_MAINTENANCE.getValue().equalsIgnoreCase("true"))
processBuildingMaintenance();
else
Logger.info("Maintenance Costings: DISABLED");