Fixes #881 and lets vampires gain nutrition from consuming blood reagent.

Fixes #881, vampires should no longer get fat from drinking too much blood. Handle_blood now checks for blood that isn't their own and "eats" it.
This commit is contained in:
veganzombeh
2015-04-26 11:33:05 +01:00
parent 0f3b349f1c
commit cf1ac2f602
3 changed files with 15 additions and 2 deletions
+1 -1
View File
@@ -1486,9 +1486,9 @@ datum
on_mob_life(var/mob/living/M as mob)
if(!M) M = holder.my_atom
if(prob(50)) M.heal_organ_damage(1,0)
if(!(M.mind in ticker.mode.vampires))
M.nutrition += nutriment_factor // For hunger and fatness
if(prob(50)) M.heal_organ_damage(1,0)
..()
return