SSmob -> SSmobs

This commit is contained in:
Cyberboss
2017-03-22 11:41:52 -04:00
parent 71deca2374
commit 089e145ce6
5 changed files with 7 additions and 7 deletions

View File

@@ -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)

View File

@@ -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()

View File

@@ -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")

View File

@@ -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

View File

@@ -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