From 52d004c0fdced2a5943632b118c178cd59275b55 Mon Sep 17 00:00:00 2001 From: Ketrai Date: Thu, 16 Nov 2017 20:35:01 +0100 Subject: [PATCH] Makes it solargrub larva produce solargrub meat. They just drop red meat right now, silly. --- .../modules/mob/living/simple_animal/vore/solargrub_larva.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/vore/solargrub_larva.dm b/code/modules/mob/living/simple_animal/vore/solargrub_larva.dm index b412be2a4b6..b48ef8963eb 100644 --- a/code/modules/mob/living/simple_animal/vore/solargrub_larva.dm +++ b/code/modules/mob/living/simple_animal/vore/solargrub_larva.dm @@ -10,6 +10,9 @@ var/global/list/grub_machine_overlays = list() health = 5 maxHealth = 5 + + meat_amount = 2 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat faction = "grubs" @@ -250,4 +253,4 @@ var/global/list/grub_machine_overlays = list() grub.eject_from_machine(O) to_chat(user, "You disturb a grub nesting in \the [O]!") return - return ..() \ No newline at end of file + return ..()