Update mappings and dependencies

This commit is contained in:
Raoul Van den Berge
2016-09-10 15:54:57 +02:00
parent beca8b11a1
commit 772aec8aa9
3 changed files with 11 additions and 6 deletions

View File

@@ -15,6 +15,7 @@
- Fixed fluids not caring about NBT tags (raoulvdberge) - Fixed fluids not caring about NBT tags (raoulvdberge)
- Fixed fluids that have less than 1 bucket stored render only partly in Fluid Grid (raoulvdberge) - Fixed fluids that have less than 1 bucket stored render only partly in Fluid Grid (raoulvdberge)
- Fixed Fluid Interface voiding bucket when shift clicking to out slot (raoulvdberge) - Fixed Fluid Interface voiding bucket when shift clicking to out slot (raoulvdberge)
- Updated to Forge 2077 (raoulvdberge)
### 0.9.4 ### 0.9.4
- Little fixes in German translation (ThexXTURBOXx) - Little fixes in German translation (ThexXTURBOXx)

View File

@@ -28,10 +28,10 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8 targetCompatibility = 1.8
minecraft { minecraft {
version = "1.10.2-12.18.1.2065" version = "1.10.2-12.18.1.2077"
runDir = "run" runDir = "run"
useDepAts = true useDepAts = true
mappings = "snapshot_20160518" mappings = "snapshot_20160910"
} }
repositories { repositories {
@@ -53,7 +53,7 @@ repositories {
dependencies { dependencies {
deobfCompile "mezz.jei:jei_1.10.2:3.9.+" deobfCompile "mezz.jei:jei_1.10.2:3.9.+"
compile "net.darkhax.tesla:Tesla:1.10-1.2.+" compile "net.darkhax.tesla:Tesla:1.10-1.2.+"
compile "net.industrial-craft:industrialcraft-2:2.6.41-ex110:api" compile "net.industrial-craft:industrialcraft-2:2.6.60-ex110:api"
deobfCompile "MCMultiPart:MCMultiPart:1.2.1+:universal" deobfCompile "MCMultiPart:MCMultiPart:1.2.1+:universal"
} }

View File

@@ -7,28 +7,32 @@ import javax.annotation.Nonnull;
public class RecipeHandlerSolderer implements IRecipeHandler<RecipeWrapperSolderer> { public class RecipeHandlerSolderer implements IRecipeHandler<RecipeWrapperSolderer> {
@Override @Override
@Nonnull
public Class<RecipeWrapperSolderer> getRecipeClass() { public Class<RecipeWrapperSolderer> getRecipeClass() {
return RecipeWrapperSolderer.class; return RecipeWrapperSolderer.class;
} }
@Override @Override
@Nonnull
@SuppressWarnings("deprecation")
public String getRecipeCategoryUid() { public String getRecipeCategoryUid() {
return RecipeCategorySolderer.ID; return RecipeCategorySolderer.ID;
} }
@Nonnull
@Override @Override
@Nonnull
public String getRecipeCategoryUid(@Nonnull RecipeWrapperSolderer recipe) { public String getRecipeCategoryUid(@Nonnull RecipeWrapperSolderer recipe) {
return RecipeCategorySolderer.ID; return RecipeCategorySolderer.ID;
} }
@Override @Override
public IRecipeWrapper getRecipeWrapper(RecipeWrapperSolderer recipe) { @Nonnull
public IRecipeWrapper getRecipeWrapper(@Nonnull RecipeWrapperSolderer recipe) {
return recipe; return recipe;
} }
@Override @Override
public boolean isRecipeValid(RecipeWrapperSolderer recipe) { public boolean isRecipeValid(@Nonnull RecipeWrapperSolderer recipe) {
return true; return true;
} }
} }