From 944c62f28a5fe606ec1b32265a45dbb678dce0ed Mon Sep 17 00:00:00 2001 From: Heroman Date: Thu, 22 Dec 2022 22:50:10 +1000 Subject: [PATCH] Makes aquatic noms respect drop prefs --- .../human/species/station/station_special_abilities_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm index 208688ac5ee..ddaf32787c6 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm @@ -1137,7 +1137,7 @@ for(var/mob/living/L in T) if(L == src) //no eating yourself. 1984. continue - if(L.devourable) + if(L.devourable && L.can_be_drop_prey) targets += L if(!(targets.len))