From 821d618395944f0a8ef1a6fa4745a72a9d1fb877 Mon Sep 17 00:00:00 2001 From: octarine-noise Date: Sat, 18 Feb 2017 10:54:53 +0100 Subject: [PATCH] update Forestry log support --- build.gradle | 2 +- .../betterfoliage/client/integration/ForestryIntegration.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index ed0a99a..fe5c04d 100644 --- a/build.gradle +++ b/build.gradle @@ -32,7 +32,7 @@ dependencies { shade "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" } minecraft { - version = '1.11.2-13.20.0.2216' + version = '1.11.2-13.20.0.2232' mappings = 'snapshot_20161210' runDir = 'run' } diff --git a/src/main/kotlin/mods/betterfoliage/client/integration/ForestryIntegration.kt b/src/main/kotlin/mods/betterfoliage/client/integration/ForestryIntegration.kt index 57d4f1b..7b0ceb6 100644 --- a/src/main/kotlin/mods/betterfoliage/client/integration/ForestryIntegration.kt +++ b/src/main/kotlin/mods/betterfoliage/client/integration/ForestryIntegration.kt @@ -47,12 +47,12 @@ object ForestryIntegration { val TileLeaves = ClassRef("forestry.arboriculture.tiles.TileLeaves") val TiLgetLeaveSprite = MethodRef(TileLeaves, "getLeaveSprite", Refs.ResourceLocation, ClassRef.boolean) - val PropertyWoodType = ClassRef("forestry.arboriculture.blocks.property.PropertyWoodType") + val PropertyWoodType = ClassRef("forestry.arboriculture.blocks.PropertyWoodType") val IWoodType = ClassRef("forestry.api.arboriculture.IWoodType") val barkTex = MethodRef(IWoodType, "getBarkTexture", Refs.String) val heartTex = MethodRef(IWoodType, "getHeartTexture", Refs.String) - val PropertyTreeType = ClassRef("forestry.arboriculture.blocks.property.PropertyTreeType") + val PropertyTreeType = ClassRef("forestry.arboriculture.blocks.PropertyTreeType") val TreeDefinition = ClassRef("forestry.arboriculture.genetics.TreeDefinition") val IAlleleTreeSpecies = ClassRef("forestry.api.arboriculture.IAlleleTreeSpecies") val ILeafSpriteProvider = ClassRef("forestry.api.arboriculture.ILeafSpriteProvider")