From a3d9ecf4c9884c4ee7d82c5fdeb7d7112b497b59 Mon Sep 17 00:00:00 2001 From: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Date: Thu, 28 Aug 2025 10:48:38 -0400 Subject: [PATCH] Fixes gutlunch controllers (#30277) --- code/game/objects/effects/landmarks.dm | 5 ++++- code/modules/mob/living/basic/mining/gutlunch.dm | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index 44d19b6f38b..1adfb2f78c5 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -674,7 +674,10 @@ INITIALIZE_IMMEDIATE(/obj/effect/landmark/newplayer_start) //Without this you sp /obj/effect/landmark/mob_spawner/gutlunch/Initialize(mapload) if(prob(5)) - mobtype = /mob/living/basic/mining/gutlunch/gubbuck + if(prob(50)) + mobtype = /mob/living/basic/mining/gutlunch/gubbuck + else + mobtype = /mob/living/basic/mining/gutlunch/guthen . = ..() /obj/effect/landmark/mob_spawner/abandoned_minebot diff --git a/code/modules/mob/living/basic/mining/gutlunch.dm b/code/modules/mob/living/basic/mining/gutlunch.dm index 40aeec5e249..58bda0013a1 100644 --- a/code/modules/mob/living/basic/mining/gutlunch.dm +++ b/code/modules/mob/living/basic/mining/gutlunch.dm @@ -25,6 +25,8 @@ loot = list(/obj/effect/decal/cleanable/blood/gibs) deathmessage = "is pulped into bugmash." + ai_controller = /datum/ai_controller/basic_controller/gutlunch + var/list/food_types = list( /obj/effect/decal/cleanable/blood/gibs, /obj/item/organ/internal/eyes,