diff --git a/core/src/mindustry/net/Administration.java b/core/src/mindustry/net/Administration.java index b7d0c451e9..bd312bacdf 100644 --- a/core/src/mindustry/net/Administration.java +++ b/core/src/mindustry/net/Administration.java @@ -479,9 +479,7 @@ public class Administration{ autosave("Whether the periodically save the map when playing.", false), autosaveAmount("The maximum amount of autosaves. Older ones get replaced.", 10), autosaveSpacing("Spacing between autosaves in seconds.", 60 * 5), - debug("Enable debug logging", false, () -> { - Log.level = debug() ? LogLevel.debug : LogLevel.info; - }); + debug("Enable debug logging", false, () -> Log.level = debug() ? LogLevel.debug : LogLevel.info); public static final Config[] all = values();