From e41e3a5fbbdb13c3e20f3379be8f7a73d0c526db Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Thu, 12 Mar 2020 00:22:53 +0100 Subject: [PATCH] Update banana.dm --- code/modules/hydroponics/grown/banana.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/grown/banana.dm b/code/modules/hydroponics/grown/banana.dm index 09d07b808a..0411a80443 100644 --- a/code/modules/hydroponics/grown/banana.dm +++ b/code/modules/hydroponics/grown/banana.dm @@ -151,7 +151,7 @@ spawn(30) if(!QDELETED(src)) var/mob/living/simple_animal/banana_spider/S = new /mob/living/simple_animal/banana_spider(get_turf(src.loc)) - S.speed += round(10 - 10 * (seed.potency/100), 1) + S.speed += round(10 / max(seed.potency, 1), 1) S.visible_message("The banana spider chitters as it stretches its legs.") qdel(src)