Updated Construction Drones

by Tubbles

Adds ground based construction robots. A repackage of roy192's fork of the original mod by Klonan. WARNING: Please note that 2.0 support is experimental, use at your own risk!

Content
4 months ago
1.1 - 2.0
46.0K
Logistic network

b Volume for Drones not set properly.

2 months ago

In construction_drone.lua the volume is set incorrectly.
probability = 1 / (8 * 60),
volume = 0.5, -- does not work when placed here

Should be changed as shown below for each filename.
-- example code
sound =
{
{ filename = path .. "sounds/construction_drone_1.ogg", volume = 0.5},
{ filename = path .. "sounds/construction_drone_2.ogg", volume = 0.5},
...

See official Prototype Docs for this here: https://lua-api.factorio.com/latest/types/WorkingSound.html

New response