diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm
index eb5d99ac9a2..02c5bfc2ac3 100644
--- a/code/_onclick/hud/hud.dm
+++ b/code/_onclick/hud/hud.dm
@@ -183,7 +183,7 @@
if(hud_used && client)
hud_used.show_hud() //Shows the next hud preset
- usr << "Switched HUD mode. Press F12 to toggle."
+ to_chat(usr, "Switched HUD mode. Press F12 to toggle.")
else
- usr << "This mob type does not use a HUD."
+ to_chat(usr, "This mob type does not use a HUD.")
diff --git a/code/game/gamemodes/vampire/vampire.dm b/code/game/gamemodes/vampire/vampire.dm
index a58084e3d05..f10e5333a46 100644
--- a/code/game/gamemodes/vampire/vampire.dm
+++ b/code/game/gamemodes/vampire/vampire.dm
@@ -357,11 +357,7 @@ You are weak to holy things and starlight. Don't go into space and avoid the Cha
// to_chat(world, "Removed [vampire_mind.current.name] from vampire shit")
to_chat(vampire_mind.current, "\red The fog clouding your mind clears. You remember nothing from the moment you were enthralled until now.")
if(vampire_mind.current.hud_used)
- var/datum/hud/H = vampire_mind.current.hud_used
- if(H.vampire_blood_display)
- H.static_inventory -= H.vampire_blood_display
- qdel(H.vampire_blood_display)
- H.vampire_blood_display = null
+ vampire_mind.current.hud_used.remove_vampire_hud()
/datum/vampire/proc/check_sun()