diff --git a/boblogistics/changelog.txt b/boblogistics/changelog.txt index 59465b792..c56abc92b 100644 --- a/boblogistics/changelog.txt +++ b/boblogistics/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 2.0.7 +Date: ??? + Changes: + - Reduced charge approach distance for robochests. Robots waiting to charge will now wait closer to the robochest. #533 +--------------------------------------------------------------------------------------------------- Version: 2.0.6 Date: 18. 01. 2026 Bugfixes: diff --git a/boblogistics/info.json b/boblogistics/info.json index 6957943f7..81aa766dd 100644 --- a/boblogistics/info.json +++ b/boblogistics/info.json @@ -1,6 +1,6 @@ { "name": "boblogistics", - "version": "2.0.6", + "version": "2.0.7", "factorio_version": "2.0", "title": "Bob's Logistics mod", "author": "Bobingabout", diff --git a/boblogistics/prototypes/entity/roboport.lua b/boblogistics/prototypes/entity/roboport.lua index eb8be5b51..ec06ebcad 100644 --- a/boblogistics/prototypes/entity/roboport.lua +++ b/boblogistics/prototypes/entity/roboport.lua @@ -462,7 +462,7 @@ data:extend({ charging_energy = "1000kW", logistics_radius = 1, construction_radius = 1, - charge_approach_distance = 5, + charge_approach_distance = 2, robot_slots_count = 10, material_slots_count = 5, stationing_offset = { 0, 0 }, @@ -550,7 +550,7 @@ data:extend({ charging_energy = "2500kW", logistics_radius = 1, construction_radius = 1, - charge_approach_distance = 5, + charge_approach_distance = 2, robot_slots_count = 20, material_slots_count = 10, stationing_offset = { 0, 0 }, @@ -637,7 +637,7 @@ data:extend({ charging_energy = "4000kW", logistics_radius = 1, construction_radius = 1, - charge_approach_distance = 5, + charge_approach_distance = 2, robot_slots_count = 30, material_slots_count = 15, stationing_offset = { 0, 0 }, @@ -723,7 +723,7 @@ data:extend({ charging_energy = "6000kW", logistics_radius = 1, construction_radius = 1, - charge_approach_distance = 5, + charge_approach_distance = 2, robot_slots_count = 40, material_slots_count = 20, stationing_offset = { 0, 0 },