update things

This commit is contained in:
modmuss50 2015-12-13 13:29:15 +00:00
parent fb6b5135e4
commit 3b3deea57b
3 changed files with 14 additions and 4 deletions

View file

@ -75,7 +75,7 @@ if (ENV.BUILD_NUMBER) {
} }
minecraft { minecraft {
version = "1.8.8-11.15.0.1609-1.8.8" version = "1.8.8-11.15.0.1625-1.8.8"
mappings = 'snapshot_20151205' mappings = 'snapshot_20151205'
replace "@MODVERSION@", project.version replace "@MODVERSION@", project.version
makeObfSourceJar = false makeObfSourceJar = false
@ -100,7 +100,7 @@ dependencies {
// compile "com.pahimar.ee3:EquivalentExchange3:1.7.10-0.3.507:dev" // compile "com.pahimar.ee3:EquivalentExchange3:1.7.10-0.3.507:dev"
// compile "net.sengir.forestry:forestry_1.7.10:4.2.0.47:dev" // compile "net.sengir.forestry:forestry_1.7.10:4.2.0.47:dev"
// shade "net.sengir.forestry:forestry_1.7.10:4.2.0.47:api" // shade "net.sengir.forestry:forestry_1.7.10:4.2.0.47:api"
// compile "tconstruct:TConstruct:1.7.10-1.8.8.build988:deobf" // compile "tconstruct:TConstruct:1.7.10-1.8.8.build9S88:deobf"
// compile "mods.natura:natura:1.7.10-107.779621d:deobf" // compile "mods.natura:natura:1.7.10-107.779621d:deobf"
// compile "mantle:Mantle:1.7.10-0.3.2.jenkins192:deobf" // compile "mantle:Mantle:1.7.10-0.3.2.jenkins192:deobf"
// compile "com.github.glitchfiend.biomesoplenty:BiomesOPlenty:1.7.10-2.1.0.1465:deobf" // compile "com.github.glitchfiend.biomesoplenty:BiomesOPlenty:1.7.10-2.1.0.1465:deobf"
@ -108,8 +108,8 @@ dependencies {
// compile "com.github.azanor:baubles:1.0.1.10:deobf@jar" // compile "com.github.azanor:baubles:1.0.1.10:deobf@jar"
// deobfCompile name: "MineTweaker3", version: "1.8-3.0.10B", classifier: "Dev" // deobfCompile name: "MineTweaker3", version: "1.8-3.0.10B", classifier: "Dev"
// shade 'IC2-Classic-API-STANDALONE:IC2-Classic-API-STANDALONE:1.1.0.19-5:api' // shade 'IC2-Classic-API-STANDALONE:IC2-Classic-API-STANDALONE:1.1.0.19-5:api'
compile 'RebornCore:RebornCore-1.8.8:1.1.0.+:dev' compile 'RebornCore:RebornCore-1.8.8:1.2.0.+:dev'
deobfCompile "mezz.jei:jei_1.8.8:2.7.1.33" deobfCompile "mezz.jei:jei_1.8.8:2.8.2.37"
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
} }

View file

@ -47,6 +47,11 @@ public class FusionReactorRecipeCategory implements IRecipeCategory {
} }
@Override
public void drawAnimations(Minecraft minecraft) {
}
@Override @Override
public void setRecipe(@Nonnull IRecipeLayout recipeLayout, @Nonnull IRecipeWrapper recipeWrapper) { public void setRecipe(@Nonnull IRecipeLayout recipeLayout, @Nonnull IRecipeWrapper recipeWrapper) {
recipeLayout.getItemStacks().init(inputSlot1, true, 21, 0); recipeLayout.getItemStacks().init(inputSlot1, true, 21, 0);

View file

@ -63,4 +63,9 @@ public class FusionReactorRecipeWrapper implements IRecipeWrapper {
fontRendererObj.drawStringWithShadow("Ticks to process: " + baseRecipe.getTickTime(), 0, 90, -1); fontRendererObj.drawStringWithShadow("Ticks to process: " + baseRecipe.getTickTime(), 0, 90, -1);
fontRendererObj.drawStringWithShadow("Time to process: " + baseRecipe.getTickTime() / 20 + " seconds", 0, 100, -1); fontRendererObj.drawStringWithShadow("Time to process: " + baseRecipe.getTickTime() / 20 + " seconds", 0, 100, -1);
} }
@Override
public void drawAnimations(Minecraft minecraft, int recipeWidth, int recipeHeight) {
}
} }