mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 02:56:14 +01:00
Vore preference helpers (#18656)
* Procs * Pref checks * Snack eat changes * Fix
This commit is contained in:
@@ -34,11 +34,10 @@
|
||||
/atom/movable/proc/end_fall(var/crushing = FALSE)
|
||||
if(isliving(src))
|
||||
var/mob/living/L = src
|
||||
if(L.vore_selected && L.can_be_drop_pred && L.drop_vore)
|
||||
for(var/mob/living/P in loc)
|
||||
if(P.can_be_drop_prey && P.drop_vore)
|
||||
L.feed_grabbed_to_self_falling_nom(L,P)
|
||||
L.visible_message(span_vdanger("\The [L] falls right onto \the [P]!"))
|
||||
for(var/mob/living/P in loc)
|
||||
if(CanDropVore(L, P))
|
||||
L.feed_grabbed_to_self_falling_nom(L,P)
|
||||
L.visible_message(span_vdanger("\The [L] falls right onto \the [P]!"))
|
||||
|
||||
if(crushing)
|
||||
for(var/atom/movable/AM in loc)
|
||||
|
||||
Reference in New Issue
Block a user