From e032193c2119e71b93bb895fc6f25772427a2399 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 8 Feb 2026 02:16:12 -0500 Subject: [PATCH] Fix HTML special characters in recorded chem dispenser recipes (#95108) ## About The Pull Request Fix this image ## Why It's Good For The Game Text encoding bug bad. Less bad = good. ## Changelog :cl: fix: Fixed encoding of special characters in chem dispenser recorded recipe names. /:cl: Co-authored-by: Jordan Dominion --- code/modules/reagents/chemistry/machinery/chem_dispenser.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/machinery/chem_dispenser.dm b/code/modules/reagents/chemistry/machinery/chem_dispenser.dm index 8a1bc7479b6..e6cc4ebb86d 100644 --- a/code/modules/reagents/chemistry/machinery/chem_dispenser.dm +++ b/code/modules/reagents/chemistry/machinery/chem_dispenser.dm @@ -375,7 +375,7 @@ if("save_recording") if(!is_operational) return - var/name = tgui_input_text(ui.user, "What do you want to name this recipe?", "Recipe Name", max_length = MAX_NAME_LEN) + var/name = tgui_input_text(ui.user, "What do you want to name this recipe?", "Recipe Name", max_length = MAX_NAME_LEN, encode = FALSE) if(!ui.user.can_perform_action(src, ALLOW_SILICON_REACH)) return if(saved_recipes[name] && tgui_alert(ui.user, "\"[name]\" already exists, do you want to overwrite it?",, list("Yes", "No")) == "No")