moves all living var definitions to living_defines (#19203)

This commit is contained in:
Charlie
2022-10-03 11:19:37 +01:00
committed by GitHub
parent 5d5fa4fa6d
commit 8e39fbc57c
4 changed files with 14 additions and 15 deletions
-3
View File
@@ -64,9 +64,6 @@
return
//Mob procs and vars for scooping up
/mob/living/var/holder_type
/mob/living/proc/get_scooped(mob/living/carbon/grabber, has_variant = FALSE)
if(!holder_type)
return
@@ -1,6 +1,3 @@
/mob/living
var/datum/language/default_language
/mob/living/verb/set_default_language(language as null|anything in languages)
set name = "Set Default Language"
set category = "IC"
+14
View File
@@ -7,6 +7,9 @@
move_force = null
pull_force = null
/// Flag to enable these making trees semi-transparent if behind them
flags_2 = CRITICAL_ATOM_2
//Health and life related vars
var/maxHealth = 100 //Maximum health that should be possible.
var/health = 100 //A mob's health
@@ -79,3 +82,14 @@
var/body_position = STANDING_UP
var/mobility_flags = MOBILITY_FLAGS_DEFAULT
/// Used for preventing attacks on admin-frozen mobs.
var/frozen = null
/// Used for keeping track of previous sleeping value with admin freeze.
var/admin_prev_sleeping = 0
/// the type of holder that will be created when a mob gets scooped up
var/holder_type
var/datum/language/default_language