Logistics Pipes

Logistics Pipes

13M Downloads

Compatibility with latest Forestry stable (3.6.x)

p-schneider opened this issue ยท 1 comments

commented

Crash log java.lang.NoSuchMethodError: forestry.api.apiculture.IBee.isPureBred(I)Z

The Forestry API changed from using the Integer ordinal of EnumBeeChromosome to using the interface IChromosomeType itself. (deprecated since ForestryAPI|genetics:2.3.0 - removed since ForestryAPI|genetics:3.0.0)

If you update the Forestry API (download-api.xml / zip file hosted on rs485.theZorro266.com) and update common\logisticspipes\proxy\forestry\ForestryProxy.java this should be easily fixed. Just search for root.getMember(bee).isPureBred(EnumBeeChromosome. and remove the .ordinal() at the end. (It should occur in 4 places.)

I compiled and tested it myself and got my world working again.

commented