Files
VOREStation/code/modules/mob/mob_defines_vr.dm
eghughguhhhhhh dfeaa5f5ed Make the belly Visibility pref a client one as opposed to a per-character one. (#17375)
* Automatic changelog compile [ci skip]

* Make Belly pref global as opposed to per-character

---------

Co-authored-by: vorestation-ci[bot] <199609141+vorestation-ci[bot]@users.noreply.github.com>
2025-03-19 00:44:40 +01:00

19 lines
660 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/shadekin/lleill_display = null
var/obj/screen/xenochimera/danger_level/xenochimera_danger_display = null
var/size_multiplier = 1 //multiplier for the mob's icon size
var/accumulated_rads = 0 // For radiation stuff.
var/faction_bump_vore = FALSE // Don't bump nom mobs of the same faction
/mob/drop_location()
if(temporary_form)
return temporary_form.drop_location()
return ..()