From f43932a2bb87d0886bedfcd1af38b278ec1ba73d Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Fri, 30 Jul 2021 17:54:55 +0300 Subject: [PATCH] Fixes unremovable components counting towards overall capacity (#60528) BCIs are no longer 6 slot instead of 10 --- code/datums/components/shell.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/shell.dm b/code/datums/components/shell.dm index 3e875dc4393..abb988a5f00 100644 --- a/code/datums/components/shell.dm +++ b/code/datums/components/shell.dm @@ -159,7 +159,7 @@ source.balloon_alert(attacker, "there is already a circuitboard inside!") return - if(length(logic_board.attached_components) > capacity) + if(length(logic_board.attached_components) - length(unremovable_circuit_components) > capacity) source.balloon_alert(attacker, "this is too large to fit into [parent]!") return