diff --git a/server/src/io/anuke/mindustry/server/ServerControl.java b/server/src/io/anuke/mindustry/server/ServerControl.java index 8fa9796d1c..e94f0227b2 100644 --- a/server/src/io/anuke/mindustry/server/ServerControl.java +++ b/server/src/io/anuke/mindustry/server/ServerControl.java @@ -20,7 +20,6 @@ import io.anuke.mindustry.net.Packets.KickReason; import io.anuke.mindustry.net.TraceInfo; import io.anuke.mindustry.type.Item; import io.anuke.mindustry.type.ItemType; -import io.anuke.mindustry.ui.fragments.DebugFragment; import io.anuke.mindustry.world.Tile; import io.anuke.ucore.core.*; import io.anuke.ucore.modules.Module; @@ -645,10 +644,6 @@ public class ServerControl extends Module{ Events.fire(new GameOverEvent()); }); - handler.register("debuginfo", "Print debug info", arg -> { - info(DebugFragment.debugInfo()); - }); - handler.register("traceblock", " ", "Prints debug info about a block", arg -> { try{ int x = Integer.parseInt(arg[0]);