diff --git a/mods_2.0/050_energy-condenser-quality-edition/changelog.txt b/mods_2.0/050_energy-condenser-quality-edition/changelog.txt index 1ab90ee0..8f08d95c 100644 --- a/mods_2.0/050_energy-condenser-quality-edition/changelog.txt +++ b/mods_2.0/050_energy-condenser-quality-edition/changelog.txt @@ -3,6 +3,7 @@ Version: 0.0.9 Date: ???? Info: - Prepare to assign technology bonuses from config + - Revert beacon interface being indestructible by default --------------------------------------------------------------------------------------------------- Version: 0.0.8 Date: 2025. 02. 03 diff --git a/mods_2.0/050_energy-condenser-quality-edition/control.lua b/mods_2.0/050_energy-condenser-quality-edition/control.lua index 8f66cf6f..b2730bf7 100644 --- a/mods_2.0/050_energy-condenser-quality-edition/control.lua +++ b/mods_2.0/050_energy-condenser-quality-edition/control.lua @@ -148,6 +148,7 @@ function Handler.on_created_entity(event) raise_built = true, } allow_beacon_interface_creation = false + struct.beacon_interface.destructible = false update_beacon_interface(struct) local other_quality_container = entity.surface.find_entities_filtered{ diff --git a/mods_2.0/050_energy-condenser-quality-edition/info.json b/mods_2.0/050_energy-condenser-quality-edition/info.json index 7a364b10..857631d6 100644 --- a/mods_2.0/050_energy-condenser-quality-edition/info.json +++ b/mods_2.0/050_energy-condenser-quality-edition/info.json @@ -22,7 +22,7 @@ "? quality", "? space-age", - "beacon-interface >= 1.0.2", + "beacon-interface >= 1.0.3", "? change-recipe-quality-without-re-selecting-recipe" ] } diff --git a/mods_2.0/055_beacon-interface/changelog.txt b/mods_2.0/055_beacon-interface/changelog.txt index 6048cf9f..962b910f 100644 --- a/mods_2.0/055_beacon-interface/changelog.txt +++ b/mods_2.0/055_beacon-interface/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.3 +Date: 2025. 02. 06 + Info: + - Revert beacon interface being indestructible by default +--------------------------------------------------------------------------------------------------- Version: 1.0.2 Date: 2025. 02. 05 Info: diff --git a/mods_2.0/055_beacon-interface/control.lua b/mods_2.0/055_beacon-interface/control.lua index 371f33d8..1096aa9a 100644 --- a/mods_2.0/055_beacon-interface/control.lua +++ b/mods_2.0/055_beacon-interface/control.lua @@ -21,7 +21,6 @@ function Handler.on_created_entity(event) local entity = event.entity or event.destination entity.operable = false - entity.destructible = false local struct = new_struct(storage.structs, { id = entity.unit_number, diff --git a/mods_2.0/055_beacon-interface/info.json b/mods_2.0/055_beacon-interface/info.json index d7b8ec07..23fcc124 100644 --- a/mods_2.0/055_beacon-interface/info.json +++ b/mods_2.0/055_beacon-interface/info.json @@ -3,7 +3,7 @@ "title": "Beacon interface", "description": "Can use any module effect at any strength, is configurable via the gui, and has modding support.", - "version": "1.0.2", + "version": "1.0.3", "author": "Quezler", "factorio_version": "2.0", diff --git a/mods_2.0/057_apprentice-assembler/changelog.txt b/mods_2.0/057_apprentice-assembler/changelog.txt index ab1e3320..7c693767 100644 --- a/mods_2.0/057_apprentice-assembler/changelog.txt +++ b/mods_2.0/057_apprentice-assembler/changelog.txt @@ -1,10 +1,11 @@ --------------------------------------------------------------------------------------------------- -Version: 1.0.4 -Date: ???? +Version: 1.0.5 +Date: 2025. 02. 06 Info: - Rely on beacon interface for indestructible invisible beacons + - Revert beacon interface being indestructible by default --------------------------------------------------------------------------------------------------- -Version: 1.0.5 +Version: 1.0.4 Date: 2025. 02. 02 Info: - Stash thumbnail parts diff --git a/mods_2.0/057_apprentice-assembler/control.lua b/mods_2.0/057_apprentice-assembler/control.lua index 41923529..fbd8286b 100644 --- a/mods_2.0/057_apprentice-assembler/control.lua +++ b/mods_2.0/057_apprentice-assembler/control.lua @@ -85,6 +85,7 @@ function Handler.on_created_entity(event) position = entity.position, raise_built = true, } + struct.beacon_interface.destructible = false Inserters.create_for_struct(struct) reset_offering_1(struct) diff --git a/mods_2.0/057_apprentice-assembler/info.json b/mods_2.0/057_apprentice-assembler/info.json index 6dc28ff4..4c1c6191 100644 --- a/mods_2.0/057_apprentice-assembler/info.json +++ b/mods_2.0/057_apprentice-assembler/info.json @@ -3,7 +3,7 @@ "title": "Apprentice assembler", "description": "Each consecutive recipe increases it's crafting speed by 1%, resets when idle.", - "version": "1.0.4", + "version": "1.0.5", "author": "Quezler", "factorio_version": "2.0", @@ -21,6 +21,6 @@ "base", "? space-age", - "beacon-interface >= 1.0.2" + "beacon-interface >= 1.0.3" ] }