Skip to content

Commit

Permalink
Fixed improper pipe connections for simik dens (pyanodon/pybugreports…
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Feb 17, 2024
1 parent 0a47c17 commit 3e19079
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Date: ???
- Fixed typos in cadaveric seed separation tech name.
- Fixed that guano can't be set as a filter. (https://github.com/pyanodon/pybugreports/issues/412)
- Fixed vrauk MK02+ duplication with turd path 2. (https://github.com/pyanodon/pybugreports/issues/406)
- Fixed improper pipe connections for simik dens (https://github.com/pyanodon/pybugreports/issues/404)
---------------------------------------------------------------------------------------------------
Version: 2.1.21
Date: 2024-2-2
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/simik-den-mk01.lua
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ ENTITY {
pipe_picture = DATA.Pipes.pictures("assembling-machine-3", nil, {0.0, -0.88}, nil, nil),
base_area = 10,
base_level = -1,
pipe_connections = {{type = "input", position = {0.0, -8.5}}},
pipe_connections = {{type = "input", position = {0.5, -8.5}}, {type = "input", position = {-0.5, -8.5}}},
secondary_draw_orders = { north = -1 }
},
off_when_no_fluid_recipe = true
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/simik-den-mk02.lua
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ ENTITY {
pipe_picture = DATA.Pipes.pictures("assembling-machine-3", nil, {0.0, -0.88}, nil, nil),
base_area = 10,
base_level = -1,
pipe_connections = {{type = "input", position = {0.0, -8.5}}},
pipe_connections = {{type = "input", position = {0.5, -8.5}}, {type = "input", position = {-0.5, -8.5}}},
secondary_draw_orders = { north = -1 }
},
off_when_no_fluid_recipe = true
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/simik-den-mk03.lua
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ ENTITY {
pipe_picture = DATA.Pipes.pictures("assembling-machine-3", nil, {0.0, -0.88}, nil, nil),
base_area = 10,
base_level = -1,
pipe_connections = {{type = "input", position = {0.0, -8.5}}},
pipe_connections = {{type = "input", position = {0.5, -8.5}}, {type = "input", position = {-0.5, -8.5}}},
secondary_draw_orders = { north = -1 }
},
off_when_no_fluid_recipe = true
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/simik-den-mk04.lua
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ ENTITY {
pipe_picture = DATA.Pipes.pictures("assembling-machine-3", nil, {0.0, -0.88}, nil, nil),
base_area = 10,
base_level = -1,
pipe_connections = {{type = "input", position = {0.0, -8.5}}},
pipe_connections = {{type = "input", position = {0.5, -8.5}}, {type = "input", position = {-0.5, -8.5}}},
secondary_draw_orders = { north = -1 }
},
off_when_no_fluid_recipe = true
Expand Down

0 comments on commit 3e19079

Please sign in to comment.