From 9680b5d2e80a47ae9cdd10486a41d09e1095b450 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Fri, 26 Mar 2021 06:25:29 -0300 Subject: [PATCH] Fixes the General Flavor Text prompt (#11528) --- code/modules/client/preference_setup/general/06_flavor.dm | 2 +- html/changelogs/alberyk-flavortextfix.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/alberyk-flavortextfix.yml diff --git a/code/modules/client/preference_setup/general/06_flavor.dm b/code/modules/client/preference_setup/general/06_flavor.dm index 89b374c8c1e..d490438fcfc 100644 --- a/code/modules/client/preference_setup/general/06_flavor.dm +++ b/code/modules/client/preference_setup/general/06_flavor.dm @@ -137,7 +137,7 @@ switch(href_list["flavor_text"]) if("open") if("general") - var/msg = sanitize(input(usr,"Give a general description of your character. This will be shown regardless of clothing, and may include OOC notes and preferences.","Flavor Text",html_decode(pref.flavor_texts[href_list["flavor_text"]])) as message, extra = 0) + var/msg = sanitize(input(usr,"Give a general description of your character. This will be shown regardless of clothing.","Flavor Text",html_decode(pref.flavor_texts[href_list["flavor_text"]])) as message, extra = 0) if(CanUseTopic(user)) pref.flavor_texts[href_list["flavor_text"]] = msg else diff --git a/html/changelogs/alberyk-flavortextfix.yml b/html/changelogs/alberyk-flavortextfix.yml new file mode 100644 index 00000000000..2bdc38e41a3 --- /dev/null +++ b/html/changelogs/alberyk-flavortextfix.yml @@ -0,0 +1,6 @@ +author: Alberyk + +delete-after: True + +changes: + - tweak: "The General Flavor Text prompt text is now compliant with the server rules."