From 49bb02f3cf77977ccfeee4340a5a1575b363a549 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Sun, 8 Sep 2024 21:01:24 +0200 Subject: [PATCH] remove second Console.WriteLine --- MyMcRealms/Controllers/WorldsController.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/MyMcRealms/Controllers/WorldsController.cs b/MyMcRealms/Controllers/WorldsController.cs index 3882dab..9ab3816 100644 --- a/MyMcRealms/Controllers/WorldsController.cs +++ b/MyMcRealms/Controllers/WorldsController.cs @@ -42,7 +42,6 @@ namespace MyMcRealms.Controllers bool isCompatibleOnOlderVersions = isOlderVersion && !isCompatible.StartsWith("NEEDS_"); bool isBanned = world.Banlist.Any(p => p.Name == playerName); - Console.WriteLine(isCompatibleOnOlderVersions); string worldOwnerName = world.Ops.ToArray().Length == 0 ? "Owner" : world.Ops[0].Name; string worldOwnerUuid = world.Ops.ToArray().Length == 0 ? "069a79f444e94726a5befca90e38aaf5" : world.Ops[0].Uuid;