mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-24 05:06:47 +01:00
15 lines
385 B
Plaintext
15 lines
385 B
Plaintext
/datum/hud/human/New(mob/living/carbon/human/owner)
|
|
. = ..()
|
|
var/atom/movable/screen/using
|
|
|
|
using = new/atom/movable/screen/navigate
|
|
using.icon = ui_style_splurt(ui_style)
|
|
using.hud = src
|
|
static_inventory += using
|
|
|
|
if(owner.client?.prefs.arousable)
|
|
using = new /atom/movable/screen/arousal(null, owner)
|
|
using.icon_state = "arousal0"
|
|
using.hud = src
|
|
infodisplay += using
|