Scrubbing messages and cleaning code.

This commit is contained in:
Fermi
2019-05-29 01:51:07 +01:00
parent 331c2887ea
commit db3369ab43
2 changed files with 5 additions and 8 deletions
@@ -1039,11 +1039,8 @@ If it becomes an issue, I'll make all pets pacifists and apply more weakness eff
As stated earlier the biggest concern is the use as a murder aid, which I have ideas for. (weaken the enthraller during the enthrallment process?)
And as stated earlier, this chem is hard to make, and is punishing on failure. You fall in love with someone if it's impure, and then your piorities change.
(thats not written yet but thats the idea.)
*/
//TODO rewrite code so that the low purity stuff is a seperate chem for clarity.
/datum/reagent/fermi/enthrall
name = "MKUltra"
id = "enthrall"
@@ -1121,7 +1118,7 @@ And as stated earlier, this chem is hard to make, and is punishing on failure. Y
return
var/list/seen = viewers(7, get_turf(M))//Sound and sight checkers
for(var/victim in seen)
if((victim == /mob/living/simple_animal/pet/) || (victim == M) || (!M.client))
if((victim == /mob/living/simple_animal/pet/) || (victim == M) || (!M.client) || (M.stat == DEAD))
seen = seen - victim
if(!seen)
return
@@ -1207,7 +1204,7 @@ And as stated earlier, this chem is hard to make, and is punishing on failure. Y
if(!M.has_status_effect(STATUS_EFFECT_INLOVE))
var/list/seen = viewers(7, get_turf(M))//Sound and sight checkers
for(var/victim in seen)
if((victim == /mob/living/simple_animal/pet/) || (victim == M))
if((victim == /mob/living/simple_animal/pet/) || (victim == M) || (M.stat == DEAD))
seen = seen - victim
if(seen.len == 0)
return
@@ -290,7 +290,7 @@
//mix_message = ""
//FermiChem vars:
OptimalTempMin = 500
OptimalTempMax = 650
OptimalTempMax = 700
ExplodeTemp = 750
OptimalpHMin = 2
OptimalpHMax = 5
@@ -299,7 +299,7 @@
CurveSharpT = 8
CurveSharppH = 0.5
ThermicConstant = -2
HIonRelease = -0.05
HIonRelease = -0.5
RateUpLim = 2
FermiChem = TRUE
FermiExplode = TRUE
@@ -330,7 +330,7 @@
CurveSharpT = 2
CurveSharppH = 0.5
ThermicConstant = -10
HIonRelease = -0.1
HIonRelease = -0.2
RateUpLim = 2
FermiChem = TRUE
PurityMin = 0.30