Merge pull request #2331 from ManeaterMildred/HUDFeedback

Fixes Issue #1523 : No feedback when using F12.
This commit is contained in:
Cheridan
2014-01-14 10:37:02 -08:00
+4 -3
View File
@@ -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 << "<span class ='info'>Switched HUD mode.</span>"
else
usr << "\red Inventory hiding is currently only supported for human mobs, sorry."
usr << "<span class ='warning'>Inventory hiding is currently only supported for human mobs, sorry.</span>"
else
usr << "\red This mob type does not use a HUD."
usr << "<span class ='warning'>This mob type does not use a HUD.</span>"