[MIRROR] Spontaneous Vore Element (#11785)

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-10-06 14:17:26 -07:00
committed by GitHub
parent 9b1fb8d624
commit 11a4471110
14 changed files with 310 additions and 265 deletions

View File

@@ -129,7 +129,7 @@
if(has_buckled_mobs() && buckled_mobs.len >= max_buckled_mobs)
for(var/mob/living/L in buckled_mobs)
if(istype(L) && M.CanStumbleVore(L))
if(istype(L) && CanStumbleVore(prey = L, pred = M))
unbuckle_mob(L, TRUE)
if(M == user)
M.visible_message(span_warning("[M.name] sits down on [L.name]!"))
@@ -218,7 +218,7 @@
if(has_buckled_mobs() && buckled_mobs.len >= max_buckled_mobs) //Handles trying to buckle yourself to the chair when someone is on it
if(can_do_spont_vore && is_vore_predator(M) && M.vore_selected)
for(var/mob/living/buckled in buckled_mobs)
if(M.CanStumbleVore(buckled))
if(CanStumbleVore(prey = buckled, pred = M))
return TRUE
to_chat(M, span_notice("\The [src] can't buckle any more people."))
return FALSE