From b4a34df1a9c97c6568ff6b81dd9d5789674d2b05 Mon Sep 17 00:00:00 2001 From: itsRevela Date: Fri, 17 Apr 2026 16:45:40 -0500 Subject: [PATCH] fix: apostrophes rendering as ' in Iggy HTML chat labels --- Minecraft.Client/Common/Consoles_App.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Minecraft.Client/Common/Consoles_App.cpp b/Minecraft.Client/Common/Consoles_App.cpp index d821594a..8d271038 100644 --- a/Minecraft.Client/Common/Consoles_App.cpp +++ b/Minecraft.Client/Common/Consoles_App.cpp @@ -6732,6 +6732,8 @@ wstring CMinecraftApp::FormatChatMessage(const wstring& desc, bool applyStyling) results = replaceAll(results, L"§f", replacements); results = replaceAll(results, L"§r", replacements); //we only support color so reset is the same as white color + results = replaceAll(results, L"'", L"\u2019"); + if (applyStyling) { std::wsmatch match; while (std::regex_search(results, match, IDS_Pattern)) {