Final bugfixes, port of AutoTraitor (tested) and RP-Rev (Untested)

This commit is contained in:
SkyMarshal
2012-01-28 01:52:14 -07:00
parent 0e51764af4
commit 695a673865
20 changed files with 74 additions and 423 deletions
+2 -2
View File
@@ -229,10 +229,10 @@
var/datum/gas_mixture/environment = loc.return_air()
var/datum/air_group/breath
// HACK NEED CHANGING LATER
if(health < config.health_threshold_dead)
if(health < (config.health_threshold_dead + 50)) //PEOPLE ARE NOT DYING, DAMMIT
losebreath++
if(losebreath>0) //Suffocating so do not take a breath
if(losebreath>0 && prob(90)) //Suffocating so do not take a breath
losebreath--
if (prob(75)) //High chance of gasping for air
spawn emote("gasp")
@@ -258,6 +258,8 @@
job_master.EquipRank(character, rank, 1)
EquipCustomItems(character)
character.loc = pick(latejoin)
character.be_syndicate = src.preferences.be_special & BE_TRAITOR
ticker.mode.latespawn(character)
AnnounceArrival(character, rank)
if(character.mind.assigned_role != "Cyborg")