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 @@ -2,6 +2,7 @@
Version: 3.1.4
Date: ????
Changes:
- Removed speed cap on vanilla locomotive, cargo wagon, and fluid wagon
- Fixed that assembling machine fluidbox connections were referenced instead of copied. Resolves https://github.com/pyanodon/pybugreports/issues/1551
- Fixed misaligned pipe connection graphics. Resolves https://github.com/pyanodon/pybugreports/issues/1540
- Removed cargo landing pad count tech
Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pycoalprocessing",
"version": "3.1.3",
"version": "3.1.4",
"factorio_version": "2.1",
"title": "Pyanodons Coal Processing",
"author": "Pyanodon, Nexela, Kingarthur, notnotmelon, Mootykins, ShadowGlass, Archezekiel, Quintuple, przemo1232, protocol_1903",
Expand Down
3 changes: 3 additions & 0 deletions prototypes/updates/entity-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ data.raw.car.tank.energy_source.burnt_inventory_size = data.raw.car.tank.energy_
data.raw.locomotive.locomotive.energy_source.fuel_category = nil
data.raw.locomotive.locomotive.energy_source.fuel_categories = {"chemical", "biomass"}
data.raw.locomotive.locomotive.energy_source.burnt_inventory_size = data.raw.locomotive.locomotive.energy_source.fuel_inventory_size
data.raw.locomotive.locomotive.max_speed = nil
data.raw["cargo-wagon"]["cargo-wagon"].max_speed = nil
data.raw["fluid-wagon"]["fluid-wagon"].max_speed = nil

data.raw.inserter["burner-inserter"].filter_count = 1
data.raw.inserter["inserter"].filter_count = 2
Expand Down