"Compatible with all mods" :D
I've just had a look and the problem is that that mod changes the collision masks of my entities "po-transformer"
, "po-hidden-electric-pole-in"
and "po-hidden-electric-pole-out"
which for some reason makes the hidden poles (the connection points) go below the transformer so they can't be selected. You can open up don't-build-on-ores/data-final-fixes.lua
yourself and add these entities to entity_blacklist
and it will work. I tried to use that mod's exception API but it doesn't appear to work:
if not is_value_in_list (prototype_name, entity_blacklist)
or (prototype.mod_exceptions and prototype.mod_exceptions["dont-build-on-ores"]) then
This logic appears to be faulty because it ignores the second section if the first section is true (which it is unless you've manually added the prototypes to entity_blacklist
).
TLDR: Please report the bug to the author of don't-build-on-ores
:)