Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
trainvoi committed Oct 21, 2024
1 parent 3a55f7d commit 768e371
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public BiomeRecipeLogic(RecipeMapMultiblockController tileEntity) {
*/
@Override
public boolean checkRecipe(@NotNull Recipe recipe) {
return checkHeightRequirement() && checkBiomeRequirement(recipe) && super.checkRecipe(recipe);
return checkBiomeRequirement(recipe) && super.checkRecipe(recipe);
}
/**
* This is a method for biome checking
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ public boolean isMultiblockPartWeatherResistant(@Nonnull IMultiblockPart part) {
return true;
}

public boolean checkHeightRequirement() {
/*public boolean checkHeightRequirement() {
return this.getPos().getY() == 64;
}
}*/


protected @NotNull BlockPattern createStructurePattern() {
Expand Down

0 comments on commit 768e371

Please sign in to comment.