From 73269c05274ae924302b1e52af2bee2134ba0953 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Thu, 11 May 2023 11:50:59 -0500 Subject: [PATCH] forcemodule fix (#21009) --- code/modules/response_team/ert.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/response_team/ert.dm b/code/modules/response_team/ert.dm index 3d7db9dbfc7..8c90fb02e9b 100644 --- a/code/modules/response_team/ert.dm +++ b/code/modules/response_team/ert.dm @@ -146,7 +146,7 @@ GLOBAL_VAR_INIT(ert_request_answered, FALSE) /client/proc/create_response_team_part_1(new_gender, new_species, role, turf/spawn_location) if(role == "Cyborg") var/mob/living/silicon/robot/ert/R = new GLOB.active_team.borg_path(spawn_location) - if(!GLOB.active_team.cyborg_security_permitted) + if(!GLOB.active_team.cyborg_security_permitted && !length(R.force_modules)) R.force_modules = list("Engineering", "Medical") return R