From 5d6939225be9d04542e8999a4c44560ed9fbc656 Mon Sep 17 00:00:00 2001 From: SatinIsle <98125273+SatinIsle@users.noreply.github.com> Date: Sun, 18 Jan 2026 15:32:21 +0000 Subject: [PATCH] Fixes some charging mobs leaping straight into bellies (#19055) Fixed a handful of big strong mobs that have leap attacks literally throwing themselves into spont vore bellies. --- code/modules/mob/living/simple_mob/subtypes/glamour/ddraig.dm | 1 + .../mob/living/simple_mob/subtypes/mechanical/cyber_horror.dm | 2 ++ code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm | 1 + code/modules/mob/living/simple_mob/subtypes/vore/scel.dm | 1 + 4 files changed, 5 insertions(+) diff --git a/code/modules/mob/living/simple_mob/subtypes/glamour/ddraig.dm b/code/modules/mob/living/simple_mob/subtypes/glamour/ddraig.dm index 806242282b2..b43b7b25adb 100644 --- a/code/modules/mob/living/simple_mob/subtypes/glamour/ddraig.dm +++ b/code/modules/mob/living/simple_mob/subtypes/glamour/ddraig.dm @@ -76,6 +76,7 @@ vore_default_mode = DM_DIGEST vore_pounce_maxhealth = 125 vore_bump_emote = "tries to devour" + can_be_drop_prey = FALSE /mob/living/simple_mob/vore/ddraig/faster special_attack_cooldown = 10 SECONDS diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/cyber_horror.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/cyber_horror.dm index 83b4a404c3f..14928ba2659 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/cyber_horror.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/cyber_horror.dm @@ -34,6 +34,8 @@ var/emp_damage = 0 var/nanobot_chance = 40 + can_be_drop_prey = FALSE + /datum/say_list/cyber_horror speak = list("H@!#$$P M@!$#", "GHAA!@@#", diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm b/code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm index 7a06a53442e..4d97a8064f9 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm @@ -59,6 +59,7 @@ vore_default_mode = DM_DIGEST vore_pounce_maxhealth = 125 vore_bump_emote = "tries to devour" + can_be_drop_prey = FALSE /mob/living/simple_mob/vore/cryptdrake/Login() . = ..() diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/scel.dm b/code/modules/mob/living/simple_mob/subtypes/vore/scel.dm index 52fb4ae6491..fb5b91c0384 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/scel.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/scel.dm @@ -81,6 +81,7 @@ vore_default_mode = DM_SELECT vore_pounce_maxhealth = 125 vore_bump_emote = "tries to devour" + can_be_drop_prey = FALSE /mob/living/simple_mob/vore/scel/Login() . = ..()