From 368e2c0e1b0b98b40aa6dcce17f75f31ba4f49e5 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Fri, 13 Sep 2024 14:58:19 +0200 Subject: [PATCH] `Owner` => `Not claimed` --- MyMcRealms/Controllers/WorldsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MyMcRealms/Controllers/WorldsController.cs b/MyMcRealms/Controllers/WorldsController.cs index 5571946..fc2e7de 100644 --- a/MyMcRealms/Controllers/WorldsController.cs +++ b/MyMcRealms/Controllers/WorldsController.cs @@ -43,7 +43,7 @@ namespace MyMcRealms.Controllers bool isCompatibleOnOlderVersions = isOlderVersion && isCompatible == "COMPATIBLE"; bool isBanned = world.Banlist.Any(p => p.Name == playerName); - string worldOwnerName = world.Ops.ToArray().Length == 0 ? "Owner" : world.Ops[0].Name; + string worldOwnerName = world.Ops.ToArray().Length == 0 ? "Not claimed" : world.Ops[0].Name; string worldOwnerUuid = world.Ops.ToArray().Length == 0 ? "069a79f444e94726a5befca90e38aaf5" : world.Ops[0].Uuid; string worldName = world.Ops.ToArray().Length == 0 ? world.ServerName : $"{world.Ops[0].Name}'s server"; string worldState = !isBanned ? "OPEN" : "CLOSED";