prebed fixes

This commit is contained in:
Fermi
2019-05-25 05:27:28 +01:00
parent b4624c5537
commit e2c1eb1d7c
14 changed files with 107 additions and 128 deletions
+19
View File
@@ -300,3 +300,22 @@
var/obj/effect/decal/cleanable/oil/B = locate() in T.contents
if(!B)
B = new(T)
//I think I had a plan, but it went out the window.
/mob/living/proc/IncreaseBloodVol(var/value)
blood_ratio += value
return
/mob/living/proc/DecreaseBloodVol(var/value)
blood_ratio -= value
/mob/living/proc/ResetBloodVol()
if(ishuman(src))
if src.has_quirk(/datum/quirk/BloodPressure)
blood_ratio = 1.2
blood_ratio = 1
/mob/living/proc/AdjustBloodVol(var/value)
if(blood_ratio == value)
return
blood_ratio = value