BuildCraft|Core

BuildCraft|Core

7M Downloads

Crash on pipe placements?

RagaRBM opened this issue ยท 3 comments

commented

So, I was placing some pipes on the world ... and this crash happened : http://pastebin.com/4HFxKZLN
No other mods. Just BC and Forge .1224

commented

BitSet#toByteArray() is since Java 1.7 so does not exist on Java 1.6
However, BuildCraft should be built against Java 1.6 though does not seem to be

commented

@simon816 - Some people pushed commits made for Java 1.7 and I have not catched all of it yet.

commented

If you add

sourceCompatibility = '1.6'
targetCompatibility = '1.6'

to the build.gradle it will build against Java 1.6 and therefore any incompatibilities can be found when compiling.