Fixes a funny gargoyle feeding bug

Fixes borgo tongues giving feedable gargoyles a little bit too deep cleansing.
This commit is contained in:
Verkister
2023-04-03 15:31:54 +03:00
committed by GitHub
parent d2c8865198
commit b92fb9222a

View File

@@ -249,7 +249,7 @@
if (do_after(user, (2 SECONDS) * W.toolspeed, target = src))
to_chat("<span class='notice'>You [anchored ? "un" : ""]anchor the [src].</span>")
anchored = !anchored
else if(gargoyle && gargoyle.vore_selected && gargoyle.trash_catching)
else if(!isrobot(user) && gargoyle && gargoyle.vore_selected && gargoyle.trash_catching)
if(istype(W,/obj/item/weapon/grab || /obj/item/weapon/holder))
gargoyle.vore_attackby(W, user)
return
@@ -291,4 +291,4 @@
if(drop_prey_temp)
gargoyle.can_be_drop_prey = TRUE
return
return ..()
return ..()