diff --git a/bobenemies/prototypes/biters.lua b/bobenemies/prototypes/biters.lua index 37c372358..71e617e92 100644 --- a/bobenemies/prototypes/biters.lua +++ b/bobenemies/prototypes/biters.lua @@ -117,6 +117,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-a[biter]-c[big]", @@ -240,6 +241,7 @@ data:extend({ icon = "__base__/graphics/icons/medium-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-a[biter]-d[bigger]", @@ -367,6 +369,7 @@ data:extend({ icon = "__base__/graphics/icons/medium-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-a[biter]-d[bigger]", @@ -498,6 +501,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-a[biter]-e[biggest]", @@ -628,6 +632,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-a[biter]-e[biggest]", @@ -766,6 +771,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-a[biter]-e[titan]", @@ -914,6 +920,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-a[biter]-e[behemoth]", @@ -1076,6 +1083,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1.2, -1.2 }, { 1.2, 1.2 } }, subgroup = "corpses", order = "c[corpse]-a[biter]-f[leviathan]", diff --git a/bobenemies/prototypes/functions.lua b/bobenemies/prototypes/functions.lua index 391f06a6c..6399a9ae5 100644 --- a/bobenemies/prototypes/functions.lua +++ b/bobenemies/prototypes/functions.lua @@ -48,6 +48,7 @@ function bobmods.enemies.new_biter(input) icon = input.icon or "__base__/graphics/icons/big-biter-corpse.png", icon_size = input.icon_size or 32, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1 * input.scale, -1 * input.scale }, { 1 * input.scale, 1 * input.scale } }, subgroup = "corpses", order = "c[corpse]-" .. input.order, diff --git a/bobenemies/prototypes/spawners.lua b/bobenemies/prototypes/spawners.lua index f9b174d25..25e5457e4 100644 --- a/bobenemies/prototypes/spawners.lua +++ b/bobenemies/prototypes/spawners.lua @@ -118,6 +118,7 @@ data:extend({ collision_box = { { -2, -2 }, { 2, 2 } }, selection_box = { { -2, -2 }, { 2, 2 } }, selectable_in_game = false, + hidden_in_factoriopedia = true, dying_speed = 0.04, subgroup = "corpses", order = "c[corpse]-d[big-biter-spawner]", @@ -243,6 +244,7 @@ data:extend({ collision_box = { { -2, -2 }, { 2, 2 } }, selection_box = { { -2, -2 }, { 2, 2 } }, selectable_in_game = false, + hidden_in_factoriopedia = true, dying_speed = 0.04, subgroup = "corpses", order = "c[corpse]-c[big-spitter-spawner]", @@ -386,6 +388,7 @@ if settings.startup["bobmods-enemies-superspawner"].value == true then collision_box = { { -2, -2 }, { 2, 2 } }, selection_box = { { -2, -2 }, { 2, 2 } }, selectable_in_game = false, + hidden_in_factoriopedia = true, dying_speed = 0.04, subgroup = "corpses", order = "c[corpse]-c[super-spawner]", diff --git a/bobenemies/prototypes/spitters.lua b/bobenemies/prototypes/spitters.lua index 5bb54509b..f0ed8d2d9 100644 --- a/bobenemies/prototypes/spitters.lua +++ b/bobenemies/prototypes/spitters.lua @@ -101,6 +101,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-b[spitter]-c[big]", @@ -208,6 +209,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-b[spitter]-d[bigger]", @@ -313,6 +315,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-b[spitter]-d[bigger]", @@ -417,6 +420,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-b[spitter]-e[biggest]", @@ -521,6 +525,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-b[spitter]-e[biggest]", @@ -627,6 +632,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-b[spitter]-e[titan]", @@ -738,6 +744,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1, -1 }, { 1, 1 } }, subgroup = "corpses", order = "c[corpse]-b[spitter]-e[behemoth]", @@ -852,6 +859,7 @@ data:extend({ icon = "__base__/graphics/icons/big-biter-corpse.png", icon_size = 64, selectable_in_game = false, + hidden_in_factoriopedia = true, selection_box = { { -1.2, -1.2 }, { 1.2, 1.2 } }, subgroup = "corpses", order = "c[corpse]-b[spitter]-f[leviathan]",