diff --git a/changelog.txt b/changelog.txt index 3b90afb5..f19fb0ad 100644 --- a/changelog.txt +++ b/changelog.txt @@ -4,6 +4,7 @@ Date: ? Changes: - Composter TURD path 2 no longer generates methanol. Now it instead generates coalbed gas. Resolves https://github.com/pyanodon/pybugreports/issues/757 - Greatly increased the science pack requirement for the wood processing unit turd from 500 -> 7000. Resolves https://github.com/pyanodon/pybugreports/issues/758 + - All caravans can use all caravan outpost types --------------------------------------------------------------------------------------------------- Version: 3.0.31 Date: 2024-11-29 diff --git a/scripts/caravan/caravan-gui.lua b/scripts/caravan/caravan-gui.lua index 8e6acf24..1f574a5c 100644 --- a/scripts/caravan/caravan-gui.lua +++ b/scripts/caravan/caravan-gui.lua @@ -126,7 +126,7 @@ function Caravan.build_schedule_gui(gui, caravan_data) local entity = schedule.entity local actions if entity and entity.valid then - if entity.name == prototype.outpost then + if (entity.name == "outpost") or (entity.name == "outpost-aerial") then actions = prototype.actions.outpost elseif prototype.actions[entity.type] then actions = prototype.actions[entity.type]