Files
VOREStation/code/modules/mob/mob_defines_vr.dm
2021-02-28 16:16:11 -05:00

13 lines
424 B
Plaintext

/mob
var/vantag_hud = 0 // Do I have the HUD enabled?
var/mob/temporary_form // For holding onto a temporary form
var/disconnect_time = null //Time of client loss, set by Logout(), for timekeeping
var/obj/screen/shadekin/shadekin_display = null
var/obj/screen/xenochimera/danger_level/xenochimera_danger_display = null
/mob/drop_location()
if(temporary_form)
return temporary_form.drop_location()
return ..()