mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Fixed blob, monkey, and time agent countdown UI elements having the wrong icon at times (#30823)
This commit is contained in:
@@ -166,11 +166,32 @@
|
||||
mymob.client.screen += list(vampire_blood_display)
|
||||
|
||||
|
||||
/datum/hud/proc/countdown_hud()
|
||||
/datum/hud/proc/countdown_blob()
|
||||
|
||||
countdown_display = new /obj/abstract/screen
|
||||
countdown_display.icon = 'icons/mob/screen_countdowns.dmi'
|
||||
countdown_display.name = "Burst Countdown"
|
||||
countdown_display.icon_state = "template"
|
||||
countdown_display.icon_state = "countdown_blob"
|
||||
countdown_display.screen_loc = ui_under_health
|
||||
|
||||
mymob.client.screen += list(countdown_display)
|
||||
|
||||
/datum/hud/proc/countdown_monkey()
|
||||
|
||||
countdown_display = new /obj/abstract/screen
|
||||
countdown_display.icon = 'icons/mob/screen_countdowns.dmi'
|
||||
countdown_display.name = "Primitive Countdown"
|
||||
countdown_display.icon_state = "countdown_monkey"
|
||||
countdown_display.screen_loc = ui_under_health
|
||||
|
||||
mymob.client.screen += list(countdown_display)
|
||||
|
||||
/datum/hud/proc/countdown_time_agent()
|
||||
|
||||
countdown_display = new /obj/abstract/screen
|
||||
countdown_display.name = "Time Countdown"
|
||||
countdown_display.icon = 'icons/mob/screen_countdowns.dmi'
|
||||
countdown_display.icon_state = "countdown_default"
|
||||
countdown_display.screen_loc = ui_under_health
|
||||
|
||||
mymob.client.screen += list(countdown_display)
|
||||
|
||||
Reference in New Issue
Block a user