From 24e255a4969f0645d07ca0c636871ecbeb95d2e2 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Sun, 12 Feb 2017 20:54:30 -0800 Subject: [PATCH] Kudzu growth now scales the correct way for quicker growth speed --- code/modules/events/spacevine.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/events/spacevine.dm b/code/modules/events/spacevine.dm index 61ba1b5350d..d5d581a814b 100644 --- a/code/modules/events/spacevine.dm +++ b/code/modules/events/spacevine.dm @@ -428,8 +428,8 @@ if(potency != null) mutativeness = potency / 10 if(production != null) - spread_cap *= production / 5 - spread_multiplier /= production / 5 + spread_cap /= production / 5 + spread_multiplier *= production / 5 ..() @@ -567,4 +567,4 @@ if(isliving(A)) var/mob/living/M = A if(("vines" in M.faction) || ("plants" in M.faction)) - . = TRUE \ No newline at end of file + . = TRUE