From f976e82c63efbb91ad95babe2fa4b4dd7ef49848 Mon Sep 17 00:00:00 2001 From: PsiOmegaDelta Date: Fri, 22 Jan 2016 08:44:43 +0100 Subject: [PATCH] Fixes the singularity expansion message. A simple flip of a character. Fixes #11983. --- code/modules/power/singularity/singularity.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/singularity/singularity.dm b/code/modules/power/singularity/singularity.dm index 608f8c283cf..7b70b10b5b5 100644 --- a/code/modules/power/singularity/singularity.dm +++ b/code/modules/power/singularity/singularity.dm @@ -263,7 +263,7 @@ allowed_size = STAGE_SUPER if (current_size != allowed_size && current_size != STAGE_SUPER) - expand(null, current_size > allowed_size) + expand(null, current_size < allowed_size) return 1 /obj/singularity/proc/eat()