diff --git a/changelog.txt b/changelog.txt index dcd33199..dad77cd6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -12,6 +12,7 @@ Date: ??? - Fixed that the upgrade_target for the mechanical inserter was not set. Resolves https://github.com/pyanodon/pybugreports/issues/1323 - Fixed AM/FM text in beacon GUI not being localizable, again. Resolves https://github.com/pyanodon/pybugreports/issues/1337 - Fixed Dutch locale translating two fluids to the same name. Resolves https://github.com/pyanodon/pybugreports/issues/1305 + - Fixed beacons not being useable with YAFC and other planner mods. Resolves https://github.com/pyanodon/pybugreports/issues/1449 --------------------------------------------------------------------------------------------------- Version: 3.0.44 Date: 2025-12-28 diff --git a/prototypes/buildings/beacon.lua b/prototypes/buildings/beacon.lua index 38268923..372244a1 100644 --- a/prototypes/buildings/beacon.lua +++ b/prototypes/buildings/beacon.lua @@ -130,6 +130,7 @@ for i, setting in pairs(beacon_settings) do if beacon.supply_area_distance < 2 then beacon.supply_area_distance = 2 end beacon.placeable_by = {item = "beacon", count = 1} beacon.localised_name = {"entity-name.new-beacon", tostring(am), tostring(fm)} + beacon.profile = nil beacon.allowed_effects = {"speed", "consumption"} beacon.graphics_set = graphics_set beacon.collision_box = {{-2.05, -2.05}, {2.05, 2.05}}