generated from tilera/1710mod
fix: forgot static
This commit is contained in:
parent
09e78be65d
commit
465e6922b9
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ apply from: './gradle/scripts/mixins.gradle'
|
|||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
|
||||
version = "1.4.0"
|
||||
version = "1.4.1"
|
||||
group= "dev.tilera"
|
||||
archivesBaseName = "auracore"
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ public class AuracoreCraftingManager {
|
|||
return null;
|
||||
}
|
||||
|
||||
public IInfusionRecipe findMatchingInfusionRecipe(TileMagicWorkbench inv, EntityPlayer pl) {
|
||||
public static IInfusionRecipe findMatchingInfusionRecipe(TileMagicWorkbench inv, EntityPlayer pl) {
|
||||
for (IInfusionRecipe recipe : AuracoreRecipes.getInfusionRecipes()) {
|
||||
if (recipe.matches(inv, pl.worldObj, pl)) {
|
||||
return recipe;
|
||||
|
|
Loading…
Reference in a new issue