mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
SSmob -> SSmobs
This commit is contained in:
@@ -631,7 +631,7 @@ var/datum/controller/subsystem/garbage/SSgarbage
|
||||
SearchVar(SSmachines)
|
||||
SearchVar(SSmapping)
|
||||
SearchVar(SSminimap)
|
||||
SearchVar(SSmob)
|
||||
SearchVar(SSmobs)
|
||||
SearchVar(SSnpc)
|
||||
SearchVar(SSorbit)
|
||||
SearchVar(SSpai)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
var/datum/controller/subsystem/mobs/SSmob
|
||||
var/datum/controller/subsystem/mobs/SSmobs
|
||||
|
||||
/datum/controller/subsystem/mobs
|
||||
name = "Mobs"
|
||||
@@ -9,7 +9,7 @@ var/datum/controller/subsystem/mobs/SSmob
|
||||
var/list/currentrun = list()
|
||||
|
||||
/datum/controller/subsystem/mobs/New()
|
||||
NEW_SS_GLOBAL(SSmob)
|
||||
NEW_SS_GLOBAL(SSmobs)
|
||||
|
||||
|
||||
/datum/controller/subsystem/mobs/stat_entry()
|
||||
|
||||
@@ -92,7 +92,7 @@
|
||||
if(!dna.species.breathe(src))
|
||||
..()
|
||||
#define HUMAN_MAX_OXYLOSS 3
|
||||
#define HUMAN_CRIT_MAX_OXYLOSS (SSmob.wait/30)
|
||||
#define HUMAN_CRIT_MAX_OXYLOSS (SSmobs.wait/30)
|
||||
/mob/living/carbon/human/check_breath(datum/gas_mixture/breath)
|
||||
|
||||
var/L = getorganslot("lungs")
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
//Start of a breath chain, calls breathe()
|
||||
/mob/living/carbon/handle_breathing()
|
||||
if(SSmob.times_fired%4==2 || failed_last_breath)
|
||||
if(SSmobs.times_fired%4==2 || failed_last_breath)
|
||||
breathe() //Breathe per 4 ticks, unless suffocating
|
||||
else
|
||||
if(istype(loc, /obj/))
|
||||
@@ -292,7 +292,7 @@
|
||||
stomach_contents.Remove(M)
|
||||
qdel(M)
|
||||
continue
|
||||
if(SSmob.times_fired%3==1)
|
||||
if(SSmobs.times_fired%3==1)
|
||||
if(!(M.status_flags & GODMODE))
|
||||
M.adjustBruteLoss(5)
|
||||
nutrition += 10
|
||||
|
||||
@@ -226,7 +226,7 @@
|
||||
colour = "red"
|
||||
|
||||
#define HUMAN_MAX_OXYLOSS 3
|
||||
#define HUMAN_CRIT_MAX_OXYLOSS (SSmob.wait/30)
|
||||
#define HUMAN_CRIT_MAX_OXYLOSS (SSmobs.wait/30)
|
||||
#define HEAT_GAS_DAMAGE_LEVEL_1 2
|
||||
#define HEAT_GAS_DAMAGE_LEVEL_2 4
|
||||
#define HEAT_GAS_DAMAGE_LEVEL_3 8
|
||||
|
||||
Reference in New Issue
Block a user