CD4017BE / InductiveAutomation

Minecraft tech mod
MIT License
5 stars 2 forks source link

I think chisel broke your cable camoflauge #19

Open DoomSquirter opened 7 years ago

DoomSquirter commented 7 years ago

using InductiveAutomation-1.10.2-5.2.0 forge 2093 we updated chisel in our pack and all of the cable camoflauges on any inductive automation cables (apply wool for example onto cable, non chisel blocks) are now non textured pink/black

I had been using wool, so a non chisel block. We had updated a few mods but chisel is the one probably most likely. I know it's not a bug on your end per se but perhaps you're relying on something from another mod that is now not working possibly?

Updated to Chisel-MC1.9.4-0.0.6.50

this is on 1.10.2

Thanks

CD4017BE commented 7 years ago

It seems that the chisel block renderer only works when given an ExtendedBlockState (a BlockState that typically provides additional information about surrounding blocks and/or the block's TileEntity). But my pipe renderer can only give it a normal BlockState, created from the item stack you clicked in, so the chisel renderer just returns the missing Model. (Haven't found a way to turn it into an ExtendedBlockState without risking a client crash for some mods, yet)

And the Wool is probably not rendered because Chisel has a config option to turn vanilla blocks into Chisel blocks and use its renderer instead. So the chisel update may have reset that config setting.

DoomSquirter commented 7 years ago

oh that explains alot then. just when you thought vanilla blocks were safe. Well, we knew it had to be chisel related. Thanks for looking into it.