Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Date: ???
Changes:
- Fix crash in beacon migration. Resolves https://github.com/pyanodon/pybugreports/issues/1515
- Fixed a crash when blueprinting inserters after another mod has edited the blueprint. Resolves https://github.com/pyanodon/pybugreports/issues/1526
- Fixed missing prototype reference in programmable inserters. Resolves https://github.com/pyanodon/pybugreports/issues/1523
---------------------------------------------------------------------------------------------------
Version: 3.1.2
Date: 2026-07-09
Expand Down
3 changes: 3 additions & 0 deletions data.lua
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ require "prototypes/menu-simulations"
-- sprites
require "prototypes/sprites/sprites"

-- util entities
require "prototypes/util"

data.raw["utility-constants"].default.main_menu_background_image_location = "__pycoalprocessinggraphics__/graphics/pycp-wall.jpg"

-- adding fuel value to liquids
Expand Down
27 changes: 27 additions & 0 deletions prototypes/util.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
-- for all of those internal entities that dont really fit anywhere else

data:extend{
{
type = "proxy-container",
name = "py-dynamic-inserter-target",
icon = util.empty_icon().icon,
draw_inventory_content = false,
collision_mask = {layers = {}},
selection_box = {{-0.25, -0.25}, {0.25, 0.25}},
flags = {
"not-rotatable",
"placeable-neutral",
"placeable-off-grid",
"not-repairable",
"not-on-map",
"not-deconstructable",
"not-blueprintable",
"hide-alt-info",
"not-upgradable"
},
allow_copy_paste = false,
selectable_in_game = false,
hidden = true,
hidden_in_factoriopedia = true
}
}
Loading