There is another post just before yours that has a link to the sound fix, and the image fix.. Doing BOTH solved my unable to load errors.
""
For those who want a manual fix for this
find line 16 in \Mining_Drones_Remastered\data\entities\attack_proxy\attack_proxy.lua
replace
filename = " base/graphics/icons/ship-wreck/small-ship-wreck.png",
with
filename = "core/graphics/empty.png",
Note: in your file you'll see 2 underscores - those are needed, just rename the base and core parts.
find line 327
replace
icon = "base/graphics/icons/ship-wreck/small-ship-wreck.png",
icon_size = 32,
with
icon = "core/graphics/empty.png",
icon_size = 1,
Same here for the underscores.
local sound = data.raw.tile["grass-1"].walking_sound
to
local sound = data.raw.tile["grass-1"].walking_sound.variations
in mining_drone_entity.lua fixes the problem.
""
Reset mod settings to default helped as well it seems.