From 7dbf26ce89dddd2221d723984392ed132aacf02e Mon Sep 17 00:00:00 2001 From: Drathek <76988376+Drulikar@users.noreply.github.com> Date: Thu, 22 Feb 2024 05:23:15 -0800 Subject: [PATCH] Increase repeated weed expansion delay for the same tile (#5772) # About the pull request This PR tweaks the delay required to expand weeds to the same tile. As in when a marine destroys weeds a queen just expanded, she must wait this much delay to spread it to that location again. # Explain why it's good for the game Disincentives using weeds next to marines slightly # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: Drathek balance: Increased same tile weed expansion delay for queen from 7s to 10s /:cl: --- .../living/carbon/xenomorph/abilities/queen/queen_abilities.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm index 9ec61b4c95ca..ebcd29ded29d 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm @@ -38,7 +38,7 @@ var/node_plant_cooldown = 7 SECONDS var/node_plant_plasma_cost = 300 - var/turf_build_cooldown = 7 SECONDS + var/turf_build_cooldown = 10 SECONDS /datum/action/xeno_action/onclick/manage_hive name = "Manage The Hive"