Redoes the variable changes into procs

This commit is contained in:
Artur
2021-05-05 18:15:13 +03:00
parent 28205f9dce
commit 35bfba1f6a
15 changed files with 33 additions and 34 deletions
@@ -222,7 +222,7 @@
if(M.health < M.maxHealth)
M.adjustHealth(-3)
if(ishuman(L) && L.blood_volume < (BLOOD_VOLUME_NORMAL * L.blood_ratio))
L.integrating_blood += 1.0
L.AddIntegrationBlood(1)
CHECK_TICK
if(last_corrupt <= world.time)
var/list/validturfs = list()
@@ -147,7 +147,7 @@
carbon_target.blood_volume -= 20
if(carbon_user.blood_volume < BLOOD_VOLUME_MAXIMUM) //we dont want to explode after all
carbon_user.integrating_blood += 20
carbon_user.AddIntegrationBlood(20)
return
/obj/effect/proc_holder/spell/pointed/blood_siphon/can_target(atom/target, mob/user, silent)