merge
This commit is contained in:
@@ -76,7 +76,7 @@
|
||||
play_sound = pick(pred_digest)
|
||||
|
||||
//Pref protection!
|
||||
if (!CHECK_BITFIELD(M.vore_flags, DIGESTABLE) || M.vore_flags & ABSORBED)
|
||||
if (!(M.vore_flags & DIGESTABLE) || M.vore_flags & ABSORBED)
|
||||
continue
|
||||
|
||||
//Person just died in guts!
|
||||
@@ -165,7 +165,7 @@
|
||||
|
||||
for (var/mob/living/M in contents)
|
||||
if(M.vore_flags & ABSORBED && owner.nutrition >= 100)
|
||||
DISABLE_BITFIELD(M.vore_flags, ABSORBED)
|
||||
M.vore_flags &= ~(ABSORBED)
|
||||
to_chat(M,"<span class='notice'>You suddenly feel solid again </span>")
|
||||
to_chat(owner,"<span class='notice'>You feel like a part of you is missing.</span>")
|
||||
owner.adjust_nutrition(-100)
|
||||
|
||||
Reference in New Issue
Block a user