fix: forgot static
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
Timo Ley 2023-01-08 14:02:48 +01:00
parent 09e78be65d
commit 465e6922b9
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ apply from: './gradle/scripts/mixins.gradle'
sourceCompatibility = JavaVersion.VERSION_1_8 sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8
version = "1.4.0" version = "1.4.1"
group= "dev.tilera" group= "dev.tilera"
archivesBaseName = "auracore" archivesBaseName = "auracore"

View file

@ -28,7 +28,7 @@ public class AuracoreCraftingManager {
return null; return null;
} }
public IInfusionRecipe findMatchingInfusionRecipe(TileMagicWorkbench inv, EntityPlayer pl) { public static IInfusionRecipe findMatchingInfusionRecipe(TileMagicWorkbench inv, EntityPlayer pl) {
for (IInfusionRecipe recipe : AuracoreRecipes.getInfusionRecipes()) { for (IInfusionRecipe recipe : AuracoreRecipes.getInfusionRecipes()) {
if (recipe.matches(inv, pl.worldObj, pl)) { if (recipe.matches(inv, pl.worldObj, pl)) {
return recipe; return recipe;