mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-29 10:21:52 +00:00
15 lines
537 B
Plaintext
15 lines
537 B
Plaintext
/mob
|
|
var/vantag_hud = 0 // Do I have the HUD enabled?
|
|
var/flying = 0 // Allows flight
|
|
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/darkness/shadekin_dark_display = null
|
|
var/obj/screen/shadekin/energy/shadekin_energy_display = null
|
|
var/obj/screen/xenochimera/danger_level/xenochimera_danger_display = null
|
|
|
|
/mob/drop_location()
|
|
if(temporary_form)
|
|
return temporary_form.drop_location()
|
|
return ..() |