Merge pull request #9314 from Trilbyspaceclone/patch-228

Makes blood gun take 1/4 the blood to use
This commit is contained in:
kevinz000
2019-10-08 00:29:41 -07:00
committed by GitHub
@@ -27,9 +27,9 @@
return 0
charge_tick = 0
var/mob/living/M = loc
if(istype(M) && M.blood_volume >= 20)
if(istype(M) && M.blood_volume >= 5)
charges++
M.blood_volume -= 20
M.blood_volume -= 5
if(charges == 1)
recharge_newshot()
return 1