From 65a2094aa2a06fd5d5ffed9431ddad33f34dbe4c Mon Sep 17 00:00:00 2001 From: FalloutFalcon <86381784+FalloutFalcon@users.noreply.github.com> Date: Tue, 11 Nov 2025 15:15:31 -0600 Subject: [PATCH] deer eat "real" grass as well (#93857) ## About The Pull Request Right now they only eat the grass that goes ontop of plating, adds it to the "real" grass ## Why It's Good For The Game immersion or something ## Changelog :cl: fix: deer now eat* real grass /:cl: --- code/modules/mob/living/basic/farm_animals/deer/deer_ai.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/basic/farm_animals/deer/deer_ai.dm b/code/modules/mob/living/basic/farm_animals/deer/deer_ai.dm index 52fedbe9c05..a654e0c29d0 100644 --- a/code/modules/mob/living/basic/farm_animals/deer/deer_ai.dm +++ b/code/modules/mob/living/basic/farm_animals/deer/deer_ai.dm @@ -44,7 +44,7 @@ target_key = BB_DEER_GRASS_TARGET finding_behavior = /datum/ai_behavior/find_and_set/in_list/turf_types hunting_behavior = /datum/ai_behavior/hunt_target/eat_grass - hunt_targets = list(/turf/open/floor/grass) + hunt_targets = list(/turf/open/floor/grass, /turf/open/misc/grass) hunt_range = 7 hunt_chance = 45