mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Fixes a funny gargoyle feeding bug
Fixes borgo tongues giving feedable gargoyles a little bit too deep cleansing.
This commit is contained in:
@@ -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 ..()
|
||||
|
||||
Reference in New Issue
Block a user