From 2b55f25f1f62c258e6f331a884d3f531998e2fb1 Mon Sep 17 00:00:00 2001 From: joep van der velden Date: Fri, 30 Oct 2020 10:08:52 +0100 Subject: [PATCH] Fixes the singulo going through the containment when it shouldn't --- code/modules/power/singularity/singularity.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/power/singularity/singularity.dm b/code/modules/power/singularity/singularity.dm index 18d211e8aeb..78c623adacf 100644 --- a/code/modules/power/singularity/singularity.dm +++ b/code/modules/power/singularity/singularity.dm @@ -268,7 +268,8 @@ X.singularity_pull(src, current_size) else consume(X) - CHECK_TICK + if(TICK_CHECK) + return // You've eaten enough. Prevents weirdness like the singulo eating the containment on stage 2 /obj/singularity/proc/consume(atom/A)