From c2fa0c2a12830cfbe01d25e6a95a2a138c6b4489 Mon Sep 17 00:00:00 2001 From: despotate Date: Mon, 26 Dec 2016 09:53:21 -0500 Subject: [PATCH] w h o o p s (#13075) --- code/modules/virus2/effect.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/virus2/effect.dm b/code/modules/virus2/effect.dm index 3275c53f526..7305d568b7b 100644 --- a/code/modules/virus2/effect.dm +++ b/code/modules/virus2/effect.dm @@ -47,7 +47,7 @@ virus=D /datum/disease2/effect/proc/can_run_effect(var/active_stage = -1) - if((count > max_count || max_count == -1) && (stage <= active_stage || active_stage == -1) && prob(chance)) + if((count < max_count || max_count == -1) && (stage <= active_stage || active_stage == -1) && prob(chance)) return 1 return 0