mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
[MIRROR] fix vore helpers (#11906)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
53831b910c
commit
bb9f437a86
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user