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
2 changes: 1 addition & 1 deletion prototypes/buildings/genlab-mk01.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RECIPE {
ingredients = {
{type = "item", name = "biofactory-mk01", amount = 1},
{type = "item", name = "plastic-bar", amount = 20},
{type = "item", name = "py-tank-3000", amount = 2},
{type = "item", name = "py-tank-3", amount = 2},
{type = "item", name = "steel-plate", amount = 15},
{type = "item", name = "electronic-circuit", amount = 15},
{type = "item", name = "glass", amount = 50},
Expand Down
4 changes: 2 additions & 2 deletions prototypes/buildings/outpost-fluid.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RECIPE {
{type = "item", name = "small-parts-01", amount = 50},
{type = "item", name = "concrete", amount = 20},
{type = "item", name = "glass", amount = 5},
{type = "item", name = "py-tank-4000", amount = 1}
{type = "item", name = "py-tank-4", amount = 1}
},
results = {{type = "item", name = "outpost-fluid", amount = 1}}
}:add_unlock("zoology")
Expand Down Expand Up @@ -79,7 +79,7 @@ data:extend {{
icon_size = 64,
fluid_box = {
-- don't hardcode so that volume gets adjusted when "realistic" setting is on.
volume = data.raw["storage-tank"]["py-tank-4000"].fluid_box.volume,
volume = data.raw["storage-tank"]["py-tank-4"].fluid_box.volume,
pipe_picture = {
north = {
layers = {
Expand Down
2 changes: 1 addition & 1 deletion prototypes/creatures/fluid-caravan.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RECIPE {
{type = "item", name = "moss-gen", amount = 15},
{type = "item", name = "earth-generic-sample", amount = 1},
{type = "fluid", name = "water-saline", amount = 100},
{type = "item", name = "py-tank-4000", amount = 1},
{type = "item", name = "py-tank-4", amount = 1},
{type = "item", name = "pump", amount = 2}
},
results = {{type = "item", name = "fluidavan", amount = 1}}
Expand Down
2 changes: 1 addition & 1 deletion scripts/caravan/caravan-prototypes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ local caravan_prototypes = {
},
fluidavan = {
opens_player_inventory = true,
max_volume = prototypes.entity["py-tank-4000"].fluid_capacity,
max_volume = prototypes.entity["py-tank-4"].fluid_capacity,
fuel_size = 2,
destructible = false,
outpost = "outpost-fluid",
Expand Down