From 66f7c41e0f411dbdea9fa464e32e2593ccf632a7 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 5 Jul 2025 18:04:59 +0200 Subject: [PATCH] Fix hidden entities --- .../prototypes/compound_entities/hidden_entities.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bio_Industries_2/prototypes/compound_entities/hidden_entities.lua b/Bio_Industries_2/prototypes/compound_entities/hidden_entities.lua index cdbb1ed..78b48d6 100644 --- a/Bio_Industries_2/prototypes/compound_entities/hidden_entities.lua +++ b/Bio_Industries_2/prototypes/compound_entities/hidden_entities.lua @@ -20,7 +20,6 @@ local no_sound = { -- Some common properties that should be used by all hidden entity types -- ------------------------------------------------------------------------------------ BI.hidden_entities.flags = { - "hidden", "hide-alt-info", "no-copy-paste", "not-blueprintable", @@ -137,6 +136,8 @@ BI.set_common_properties = function(h_entity) h_entity.collision_mask = BI.hidden_entities.collision_mask h_entity.collision_box = BI.hidden_entities.collision_box h_entity.selection_box = BI.hidden_entities.selection_box + + h_entity.hidden = true end