Sorry guys, but it seems no update is coming. For all who want to change this for themselves here are the steps to do so.
0) First of all keep in mind that only NEW PLACED electric-mining-drill entities will be affected. Already built entities will not show the bottleneck indicator. So you can also upgrade/downgrade to replace them quickly, if you have other mods with drills active. If you dont want to do that you can stop reading now. :-)
1) Search within the mod zip for the control.lua
2) Around line 54 you find the following block:
local BLACKLIST_NAMES = {
["electric-mining-drill"] = true,
["factory-port-marker"] = true,
}
3) Change it to
local BLACKLIST_NAMES = {
["factory-port-marker"] = true
}
4) Save the change and make sure it is updated in the mod zip. Start the game again.
5) Profit!
If you also change around line 300:
else
global.show_bottlenecks = 1
end
to
else
global.show_bottlenecks = 1
rebuild_overlays()
end
You can then disable the overlay with the hotkey (default ALT+SHIFT+L I think) and then renable it. The rebuild_overlays()
call will cause the overlays to be added to everything supported again, in this case also electric mining drills, because we removed them from the blacklist.