From 8f94aa8bddb9091099589c4139470cabf52b7d25 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Fri, 29 Nov 2024 12:52:36 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20replace=20"=EF=BF=BD"=20with=20"=C2=A7"?= =?UTF-8?q?=20in=20realm=20settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 bcfdfc5..f11e8d8 100644 --- a/MyMcRealms/Controllers/WorldsController.cs +++ b/MyMcRealms/Controllers/WorldsController.cs @@ -156,7 +156,7 @@ namespace MyMcRealms.Controllers Owner = worldOwnerName, OwnerUUID = worldOwnerUuid, Name = worldName, - Motd = world.Motd, + Motd = world.Motd.Replace("�", "§"), State = whitelist.Enabled ? "CLOSED" : "OPEN", WorldType = "NORMAL", MaxPlayers = 10,