From feb89c37713f72bfa110cdafb33088c80755dbf6 Mon Sep 17 00:00:00 2001 From: RengaN02 <60517664+RengaN02@users.noreply.github.com> Date: Fri, 8 Nov 2024 02:27:42 +0300 Subject: [PATCH] Fixes level 1 singularity eating containment field and being able to move (#87717) ## About The Pull Request Fixes: https://github.com/tgstation/tgstation/issues/87716 Fixes this https://github.com/user-attachments/assets/d31c5f97-1576-404b-8427-a4089446fd5f ## Why It's Good For The Game Its a fix pr ## Changelog :cl: Rengan fix: fixes singularity eating containtment field /:cl: --- code/modules/power/singularity/singularity.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/power/singularity/singularity.dm b/code/modules/power/singularity/singularity.dm index 40385624007..1993a51e29b 100644 --- a/code/modules/power/singularity/singularity.dm +++ b/code/modules/power/singularity/singularity.dm @@ -66,6 +66,7 @@ var/datum/component/singularity/new_component = AddComponent( singularity_component_type, \ consume_callback = CALLBACK(src, PROC_REF(consume)), \ + roaming = (move_self && current_size >= STAGE_TWO), \ ) singularity_component = WEAKREF(new_component)