mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-22 04:28:33 +01:00
@@ -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) && CanStumbleVore(prey = L, pred = M))
|
||||
if(istype(L) && can_stumble_vore(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(CanStumbleVore(prey = buckled, pred = M))
|
||||
if(can_stumble_vore(prey = buckled, pred = M))
|
||||
return TRUE
|
||||
to_chat(M, span_notice("\The [src] can't buckle any more people."))
|
||||
return FALSE
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
if(isliving(src))
|
||||
var/mob/living/L = src
|
||||
for(var/mob/living/P in loc)
|
||||
if(CanDropVore(L, P))
|
||||
if(can_drop_vore(L, P))
|
||||
L.feed_grabbed_to_self_falling_nom(L,P)
|
||||
L.visible_message(span_vdanger("\The [L] falls right onto \the [P]!"))
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
if(food_inserted_micros && food_inserted_micros.len)
|
||||
for(var/mob/living/F in food_inserted_micros)
|
||||
food_inserted_micros -= F
|
||||
if(!CanFoodVore(M, F))
|
||||
if(!can_food_vore(M, F))
|
||||
F.forceMove(get_turf(src))
|
||||
else
|
||||
F.forceMove(M.vore_selected)
|
||||
|
||||
@@ -296,7 +296,7 @@
|
||||
return
|
||||
else if(isliving(source))
|
||||
var/mob/living/L = source
|
||||
if(CanThrowVore(gargoyle, L))
|
||||
if(can_throw_vore(gargoyle, L))
|
||||
var/drop_prey_temp = FALSE
|
||||
if(gargoyle.can_be_drop_prey)
|
||||
drop_prey_temp = TRUE
|
||||
|
||||
Reference in New Issue
Block a user