From 5ca89a4640f6872cca9540dd090e30fcf39d7fec Mon Sep 17 00:00:00 2001
From: cacogen <25089914+cacogen@users.noreply.github.com>
Date: Mon, 26 Apr 2021 20:03:48 +1200
Subject: [PATCH] Clarifies keybinding conflict message (#58676)
Gives the heading an underline to separate it from the rest of the text and makes it title case so it stands out without overstating the urgency of the situation
---
code/modules/client/preferences_savefile.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm
index 7949c475fd9..747551c4584 100644
--- a/code/modules/client/preferences_savefile.dm
+++ b/code/modules/client/preferences_savefile.dm
@@ -126,8 +126,8 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
addtimer(CALLBACK(src, .proc/announce_conflict, notadded), 5 SECONDS)
/datum/preferences/proc/announce_conflict(list/notadded)
- to_chat(parent, "KEYBINDING CONFLICT\n\
- There are new keybindings that default to keys you've already bound. These will be unbound.")
+ to_chat(parent, "Keybinding Conflict\n\
+ There are new keybindings that default to keys you've already bound. The new ones will be unbound.")
for(var/item in notadded)
var/datum/keybinding/conflicted = item
to_chat(parent, "[conflicted.category]: [conflicted.full_name] needs updating")