
Edit:
Well, it seems this mod interferes with the suit plug mod.
I deleted it and now its working.
Maybe interesting for anyone who has the same problem.

Code: Select all
assert(type(buildingType)== "string",debug.traceback("From building-platform mod, buildingType parameter must be a string, find the faulty calling mod at the top of the following stacktrace :", 3))
assert(type(pattern)== "string",debug.traceback("From building-platform mod, pattern parameter must be a string, find the faulty calling mod at the top of the following stacktrace :", 3))

 If you manage to do what you want you should give your code here as other people where interested to do something similar.
 If you manage to do what you want you should give your code here as other people where interested to do something similar.

Two tough report, thanks anyway, here the explanation and workaround for them if you are interested.Betep3akata wrote:Hi!
There is two or more incompatibilities with GotLag's Reactors mod:
1. The circuit interface (sub-entity of the reactor building) likely masked by building platform (you cannot select it) and does not accept wires.
2. The reactor building can be placed on the platform of concrete without the building platform beneath. After that you can mine concrete and get an error.
These issues were tested on the configuration of factorio with only two these mods.
Thanks.
Code: Select all
	buildingplatform.blockAllBut("storage-tank","reactor%-boiler")
Code: Select all
	buildingplatform.blockAll("storage-tank")
Code: Select all
	buildingplatform.blockAllBut("constant-combinator","reactor%-interface")
Code: Select all
	buildingplatform.blockAll("constant-combinator")
Code: Select all
	buildingplatform.blockAllBut("assembling-machine","nuclear%-reactor")
Code: Select all
	buildingplatform.blockAll("assembling-machine")

 Thanks for a great work.
 Thanks for a great work.