Double Speed Belts


Сhanging speed of belts. Every next belt tier has twice higher speed than tier before. Now splitter splits one blue belt to two red belts. Now updated for Factorio 2.0 and Space Age - please let us know if you experience any bugs.

Tweaks
a month ago
0.16 - 2.0
12.8K
Logistics

g Factorissimo 3 connection belt are not same speed

2 months ago
(updated 2 months ago)

Factorissimo 3 deepcopy all belts in data update to create his connection for his belt but since you modify them in data final fix they no longer have the right speed
you need to add something like that in data final fix in you mods if factorissimo 3 is enabled :
and add factorissimo 3 in ? dependencies

local base_speed = 0.03125
local linked_belts = data.raw["linked-belt"]
for i,v in pairs(linked_belts) do
local speed = v.speed / base_speed
v.speed = base_speed * math.pow(2,speed-1)
end

a month ago

I added the support for factorissimo 3 in the mod so everything should be fixed

a month ago

Thanks!

New response