From c8aec05ee983bd1cab1df965f8f0ab632ada1382 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sun, 23 Sep 2018 01:22:47 -0500 Subject: [PATCH] Fixes mood hud missing with one weird trick coders hate this! --- code/_onclick/hud/human.dm | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm index 362943350f..30dedf4f00 100644 --- a/code/_onclick/hud/human.dm +++ b/code/_onclick/hud/human.dm @@ -80,11 +80,6 @@ icon_state = "power_display" screen_loc = ui_lingchemdisplay -/mob/living/carbon/human/create_mob_hud() - if(client && !hud_used) - hud_used = new /datum/hud/human(src) - - /datum/hud/human/New(mob/living/carbon/human/owner) ..() owner.overlay_fullscreen("see_through_darkness", /obj/screen/fullscreen/see_through_darkness) @@ -92,6 +87,7 @@ var/widescreenlayout = FALSE //CIT CHANGE - adds support for different hud layouts depending on widescreen pref if(owner.client && owner.client.prefs && owner.client.prefs.widescreenpref) //CIT CHANGE - ditto widescreenlayout = TRUE // CIT CHANGE - ditto + var/obj/screen/using var/obj/screen/inventory/inv_box @@ -308,7 +304,6 @@ healths = new /obj/screen/healths() infodisplay += healths - //CIT CHANGE - adds arousal and stamina to hud arousal = new /obj/screen/arousal() arousal.icon_state = (owner.canbearoused == 1 ? "arousal0" : "")