From 790bbae720cc57563e34fa5211072f2439ba0a96 Mon Sep 17 00:00:00 2001 From: private-tristan <54422837+private-tristan@users.noreply.github.com> Date: Thu, 1 Feb 2024 10:29:53 -0500 Subject: [PATCH] Removes burrower from feral ERT (#5570) # About the pull request see title. this means that in the place of a burrower, there'll be a hivelord or a drone instead. # Explain why it's good for the game Currently, burrower doesn't really have a place in the ERT, every other "medic" type xeno (Drone and hivelord) is able to build, emit pheros, and weed. Meanwhile the burrower can only weed and make traps, this isn't very useful because there's typically only 2 or 3 xenos able to weed/emit pheros, and pheros are **Extraordinarily important** to xeno combat, especially in XvX, while the traps take far too long to set up for them to be very useful. # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: balance: Burrower can no longer spawn as part of the feral xeno ERT /:cl: --- code/datums/emergency_calls/feral_xenos.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/emergency_calls/feral_xenos.dm b/code/datums/emergency_calls/feral_xenos.dm index 5d9f14a4680c..ad1935ccefb9 100644 --- a/code/datums/emergency_calls/feral_xenos.dm +++ b/code/datums/emergency_calls/feral_xenos.dm @@ -39,7 +39,7 @@ else if(medics < max_medics) medics++ - var/picked = pick(/mob/living/carbon/xenomorph/drone, /mob/living/carbon/xenomorph/hivelord, /mob/living/carbon/xenomorph/burrower) + var/picked = pick(/mob/living/carbon/xenomorph/drone, /mob/living/carbon/xenomorph/hivelord) new_xeno = new picked(spawn_loc) else if(engineers < max_engineers)