BuildCraft|Core

BuildCraft|Core

7M Downloads

Question Regarding Facade Integration

artdude543 opened this issue ยท 2 comments

commented

How does one add my mod blocks to be added as a facade? I was told to use this but it does not work

"FMLInterModComms.sendMessage("BuildCraft|Transport", "add-facade", ModBlocks.BlockTaintedGlass.blockID + "@" + Strings.BLOCKTAINTED_GLASS);"

I'm not sure if this is right place to ask some help but if anyone could help I would be most appreciated!

commented

What I use:

FMLInterModComms.sendMessage("BuildCraft|Transport", "add-facade", String.format("%d@%d", block.blockID, meta));

meta being the block metadata ofc

commented

Oooh.. so one could .. facade all the blocks?