fix: apostrophes and quotes displaying as HTML entities in chat

This commit is contained in:
itsRevela 2026-04-17 12:20:58 -05:00
parent fde5fbe6f4
commit cf81dd9d13

View file

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