From 5eee5879420a8b3280ebc8fd72500286d9b0036b Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Sat, 15 Nov 2025 17:58:41 +0100 Subject: [PATCH] [NO GBP] Fixes raptors spawning regular eggs instead of raptor ones (#93949) ## About The Pull Request Forgot a debug line in, oops ## Changelog :cl: fix: Fixed raptors spawning regular eggs instead of raptor ones /:cl: --- code/modules/mob/living/basic/lavaland/raptor/_raptor.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/basic/lavaland/raptor/_raptor.dm b/code/modules/mob/living/basic/lavaland/raptor/_raptor.dm index 2a772d7e262..d0e8213add5 100644 --- a/code/modules/mob/living/basic/lavaland/raptor/_raptor.dm +++ b/code/modules/mob/living/basic/lavaland/raptor/_raptor.dm @@ -209,7 +209,7 @@ GLOBAL_LIST_EMPTY(raptor_population) /mob/living/basic/raptor/proc/add_breeding_component() var/static/list/partner_types = typecacheof(list(/mob/living/basic/raptor)) - var/static/list/baby_types = list(/obj/item/food/egg = 1) ///raptor_egg = 1) + var/static/list/baby_types = list(/obj/item/food/egg/raptor_egg = 1) AddComponent(\ /datum/component/breed, \ can_breed_with = partner_types, \