Skip to content

Commit

Permalink
Ported to 1.15.2
Browse files Browse the repository at this point in the history
Re-implemented JEI support
  • Loading branch information
GirafiStudios committed Jan 25, 2020
1 parent 42fac72 commit f097156
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ import groovy.json.JsonOutput
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'

repositories {
//maven {
// name = "JEI maven"
// url = "https://dvs1.progwml6.com/files/maven/"
//}
maven {
name = "JEI maven"
url = "https://dvs1.progwml6.com/files/maven/"
}
}

version = "${minecraft_version}-${mod_version}" + getBuildNumber()
Expand Down Expand Up @@ -53,8 +53,8 @@ minecraft {

dependencies {
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
//compileOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}:api")
//runtimeOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}")
compileOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}:api")
runtimeOnly fg.deobf("mezz.jei:jei-${minecraft_version}:${jei_version}")
}

jar {
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
minecraft_version=1.15.1
forge_version=30.0.51
minecraft_version=1.15.2
forge_version=31.0.1
mappings=20200125
mod_version=2.0.7
jei_version=6.0.0.26
mod_version=2.0.8
jei_version=6.0.0.2

org.gradle.jvmargs=-Xmx4G
org.gradle.daemon=false
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*package com.teammetallurgy.aquaculture.integration.jei;
package com.teammetallurgy.aquaculture.integration.jei;

import com.teammetallurgy.aquaculture.Aquaculture;
import com.teammetallurgy.aquaculture.integration.jei.recipes.FilletKnifeRecipeMaker;
Expand All @@ -23,4 +23,4 @@ public ResourceLocation getPluginUid() {
public void registerRecipes(IRecipeRegistration registration) {
registration.addRecipes(FilletKnifeRecipeMaker.createFilletKnifeRecipes(), VanillaRecipeCategoryUid.CRAFTING);
}
}*/
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*package com.teammetallurgy.aquaculture.integration.jei.recipes;
package com.teammetallurgy.aquaculture.integration.jei.recipes;

import com.teammetallurgy.aquaculture.Aquaculture;
import com.teammetallurgy.aquaculture.api.AquacultureAPI;
Expand Down Expand Up @@ -32,4 +32,4 @@ public static List<ShapelessRecipe> createFilletKnifeRecipes() {
}
return recipes;
}
}*/
}

0 comments on commit f097156

Please sign in to comment.