module things, jfc
This commit is contained in:
@@ -14,8 +14,7 @@
|
||||
var/list/datum/action/chameleon_item_actions
|
||||
var/static/next_mob_id = 0
|
||||
|
||||
var/stat = 0 //Whether a mob is alive or dead. TODO: Move this to living - Nodrak
|
||||
|
||||
var/stat = CONSCIOUS //Whether a mob is alive or dead. TODO: Move this to living - Nodrak
|
||||
|
||||
/*A bunch of this stuff really needs to go under their own defines instead of being globally attached to mob.
|
||||
A variable should only be globally attached to turfs/objects/whatever, when it is in fact needed as such.
|
||||
@@ -26,7 +25,7 @@
|
||||
var/zone_selected = null
|
||||
|
||||
var/computer_id = null
|
||||
var/list/logging = list(INDIVIDUAL_ATTACK_LOG, INDIVIDUAL_SAY_LOG, INDIVIDUAL_EMOTE_LOG, INDIVIDUAL_OOC_LOG)
|
||||
var/list/logging = list()
|
||||
var/obj/machinery/machine = null
|
||||
|
||||
var/next_move = null
|
||||
@@ -40,6 +39,11 @@
|
||||
var/lying_prev = 0
|
||||
var/canmove = 1
|
||||
|
||||
//MOVEMENT SPEED
|
||||
var/list/movespeed_modification //Lazy list, see mob_movespeed.dm
|
||||
var/cached_multiplicative_slowdown
|
||||
/////////////////
|
||||
|
||||
var/name_archive //For admin things like possession
|
||||
|
||||
var/bodytemperature = BODYTEMP_NORMAL //310.15K / 98.6F
|
||||
@@ -104,3 +108,5 @@
|
||||
var/list/mousemove_intercept_objects
|
||||
|
||||
var/datum/click_intercept
|
||||
|
||||
var/registered_z
|
||||
|
||||
Reference in New Issue
Block a user