mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 12:08:28 +01:00
Considers more situations
Makes it also ignore you if you've recently used OOC escape, or if it's already full
This commit is contained in:
@@ -130,8 +130,15 @@
|
||||
if(L.stat == UNCONSCIOUS) // Do we have mauling? Yes? Then maul people who are sleeping but not SSD
|
||||
if(mauling)
|
||||
return TRUE
|
||||
else if(unconscious_vore && L.allowmobvore) //VOREStation Add
|
||||
return TRUE //VOREStation Add
|
||||
//VOREStation Add Start
|
||||
else if(unconscious_vore && L.allowmobvore)
|
||||
var/mob/living/simple_mob/vore/eater = holder
|
||||
if(eater.prey_excludes[L])
|
||||
return FALSE
|
||||
if(eater.vore_fullness >= eater.vore_capacity)
|
||||
return FALSE
|
||||
return TRUE
|
||||
//VOREStation Add End
|
||||
else
|
||||
return FALSE
|
||||
if(holder.IIsAlly(L))
|
||||
|
||||
Reference in New Issue
Block a user