Skip to content

Commit

Permalink
Merge pull request #9308 from Spookerton/spkrtn/cng/its-technically-m…
Browse files Browse the repository at this point in the history
…ostly-fats-and-oils

drakes can eat soap
  • Loading branch information
Atermonera authored Jan 31, 2024
2 parents aca27de + f1929e3 commit 79b9f24
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,19 @@
return TRUE


/obj/item/soap/interaction_grafadreka(mob/living/simple_mob/animal/sif/grafadreka/trained/drake)
if (drake.trained_drake && drake.a_intent != I_GRAB)
playsound(src,'sound/items/eatfood.ogg', rand(10, 50), TRUE)
drake.visible_message(
SPAN_ITALIC("\The [drake] eats \a [src]."),
SPAN_ITALIC("You eat \the [src]."),
SPAN_ITALIC("You hear an odd gooey chewing sound.")
)
qdel(src)
return TRUE
return ..()


/obj/machinery/button/interaction_grafadreka(mob/living/simple_mob/animal/sif/grafadreka/trained/drake)
. = TRUE
if (!drake.trained_drake || drake.a_intent == I_HURT)
Expand Down

0 comments on commit 79b9f24

Please sign in to comment.