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() . = ..()