From 396c6ddf20bc399644b07697aaed14805eb95ca2 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Tue, 30 Mar 2021 09:48:30 +0300 Subject: [PATCH] Lowers rot disease chance (#58034) Lowered the chance of disease creation by ~60% Every round was having horrible breakouts, this ought to fix that --- code/datums/components/rot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/rot.dm b/code/datums/components/rot.dm index dc90ba90632..67485f24655 100644 --- a/code/datums/components/rot.dm +++ b/code/datums/components/rot.dm @@ -119,7 +119,7 @@ if(world.time - start_time < start_delay) return - if(!prob(strength * 8)) + if(!prob(strength * 3)) return //We're running just under the "worst disease", since we don't want these to be too strong