diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm
index b7ad49ff4bd..39c720feb89 100644
--- a/code/_onclick/hud/hud.dm
+++ b/code/_onclick/hud/hud.dm
@@ -297,8 +297,9 @@ datum/hud/New(mob/owner)
if(hud_used && client)
if(ishuman(src))
- hud_used.show_hud() //Shows the next hud preset
+ hud_used.show_hud() //Shows the next hud preset
+ usr << "Switched HUD mode."
else
- usr << "\red Inventory hiding is currently only supported for human mobs, sorry."
+ usr << "Inventory hiding is currently only supported for human mobs, sorry."
else
- usr << "\red This mob type does not use a HUD."
+ usr << "This mob type does not use a HUD."