fix colors in Extras menu ingame

This commit is contained in:
Downforce Agent 2024-07-25 13:04:57 -05:00
parent 2d7e0a1cb0
commit 009f406a4b

View File

@ -123,6 +123,8 @@ public class Rizzo {
// Look ma, I'm breaking XML standards! // Look ma, I'm breaking XML standards!
String xmlString = result.getWriter().toString() String xmlString = result.getWriter().toString()
.replace("&", "&") .replace("&", "&")
.replace("&lt;", "<")
.replace("&gt;", ">")
.replace("&#9;", "\t") .replace("&#9;", "\t")
.replace("&#8;", "\b") .replace("&#8;", "\b")
.replace("&#10;", "\n") .replace("&#10;", "\n")