Hopefully fixes the horror bug (#13406)

This commit is contained in:
adamsong
2022-03-10 12:53:05 -06:00
committed by GitHub
parent db93140258
commit d2af85bea0
6 changed files with 676 additions and 676 deletions

View File

@@ -1,18 +1,18 @@
/obj/screen/horror_chemicals
name = "chemicals"
icon_state = "horror_counter"
screen_loc = ui_lingchemdisplay
/datum/hud/chemical_counter
ui_style = 'icons/mob/screen_midnight.dmi'
var/obj/screen/horror_chemicals/chemical_counter
/datum/hud/chemical_counter/New(mob/owner)
. = ..()
chemical_counter = new /obj/screen/horror_chemicals
infodisplay += chemical_counter
/datum/hud/chemical_counter/Destroy()
. = ..()
QDEL_NULL(chemical_counter)
/obj/screen/horror_chemicals
name = "chemicals"
icon_state = "horror_counter"
screen_loc = ui_lingchemdisplay
/datum/hud/chemical_counter
ui_style = 'icons/mob/screen_midnight.dmi'
var/obj/screen/horror_chemicals/chemical_counter
/datum/hud/chemical_counter/New(mob/owner)
. = ..()
chemical_counter = new /obj/screen/horror_chemicals
infodisplay += chemical_counter
/datum/hud/chemical_counter/Destroy()
. = ..()
QDEL_NULL(chemical_counter)