From a3bf39d86b3dd23d185c3586e2f1783ccc547e31 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sat, 20 Feb 2021 10:08:15 -0500 Subject: [PATCH] Minor cleanup --- core/src/mindustry/net/Administration.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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();