Remove HTML escape for apostrophe in chat (#1541)

Fixes #1537
This commit is contained in:
ModMaker101
2026-04-26 13:22:51 -04:00
committed by GitHub
parent e5351b51c0
commit 3ab29ec26e

View File

@@ -6604,7 +6604,6 @@ wstring CMinecraftApp::EscapeHTMLString(const wstring& desc)
{L'<', L"&lt;"}, {L'<', L"&lt;"},
{L'>', L"&gt;"}, {L'>', L"&gt;"},
{L'\"', L"&quot;"}, {L'\"', L"&quot;"},
{L'\'', L"&#39;"},
}; };
wstring finalString = L""; wstring finalString = L"";