diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm
index bcaa1e545c7..53ef512b46b 100644
--- a/code/modules/client/preferences_savefile.dm
+++ b/code/modules/client/preferences_savefile.dm
@@ -126,12 +126,11 @@ 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 have defaults bound to keys you already set, They will default to Unbound. You can bind them in Setup Character or Game Preferences\n\
- Or you can click here to go straight to the keybindings page")
+ to_chat(parent, "KEYBINDING CONFLICT\n\
+ There are new keybindings that default to keys you've already bound. These will be unbound.")
for(var/item in notadded)
var/datum/keybinding/conflicted = item
- to_chat(parent, "[conflicted.category]: [conflicted.full_name] needs updating")
+ to_chat(parent, "[conflicted.category]: [conflicted.full_name] needs updating")
LAZYADD(key_bindings["Unbound"], conflicted.name) // set it to unbound to prevent this from opening up again in the future