diff --git a/CHANGELOG.md b/CHANGELOG.md index 28edbd175..84ef1e90b 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ - Each Grid Filter can now only filter 9 items - Each Grid allows 4 Grid Filters instead of 1 - Grid Filters can now be configured to compare on NBT and/ or damage +- Updated to Forge 2045 +- Updated Tesla ### 0.8.15 **Bugfixes** diff --git a/build.gradle b/build.gradle index 6acf39429..b7a450094 100755 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ group = "refinedstorage" archivesBaseName = "refinedstorage" minecraft { - version = "1.10.2-12.18.1.2044" + version = "1.10.2-12.18.1.2045" runDir = "run" useDepAts = true mappings = "snapshot_20160518" @@ -38,8 +38,8 @@ repositories { dependencies { deobfCompile "mezz.jei:jei_1.10.2:3.7.+" - compile "net.darkhax.tesla:Tesla:1.10-1.2.0.34" - compile "net.industrial-craft:industrialcraft-2:2.6.26-ex110:api" + compile "net.darkhax.tesla:Tesla:1.10-1.2.+" + compile "net.industrial-craft:industrialcraft-2:2.6.27-ex110:api" } processResources { diff --git a/src/main/java/refinedstorage/RefinedStorage.java b/src/main/java/refinedstorage/RefinedStorage.java index bbe008368..7e37ff3d1 100755 --- a/src/main/java/refinedstorage/RefinedStorage.java +++ b/src/main/java/refinedstorage/RefinedStorage.java @@ -143,6 +143,6 @@ public final class RefinedStorage { } public static boolean hasTesla() { - return Loader.isModLoaded("Tesla"); + return Loader.isModLoaded("tesla"); } }