From 9ebd679e162a4e5fbfe05ea42e0c20b0415fb51e Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Thu, 22 Jan 2026 21:21:05 -0800 Subject: [PATCH 1/2] Shorten charge_approach_distance for robochests Robochests previously had their charge_approach_distance set to 5, the same as Roboports. This didn't really make sense because Robochests are smaller and their charge point is at their center rather than around their perimeter. This causes robots to take significantly longer to fly to the charging point, especially when they're out of power. Changing the distance to 2 makes things a lot more efficient, while still looking better than having them all bunch up like they would at distance 0. --- boblogistics/prototypes/entity/roboport.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 }, From ab56cbd9b7a1a977da2b0bda831d8fab6c7ceb01 Mon Sep 17 00:00:00 2001 From: KiwiHawk <59639+KiwiHawk@users.noreply.github.com> Date: Wed, 28 Jan 2026 21:57:50 +1300 Subject: [PATCH 2/2] Updating version number and changelog --- boblogistics/changelog.txt | 5 +++++ boblogistics/info.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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",