Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
Merge branch '1.18-2.0' into 1.19-2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Siphalor committed Jul 20, 2022
2 parents 6fdb1c4 + 25507dd commit 784383b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.14.8

# Mod Properties
mod_version = 2.1.4-beta.2
mod_version = 2.1.4-beta.3
mod_release = beta
mod_mc_version_specifier = 1.19
mod_mc_versions = 1.19
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class MixinAbstractFurnaceBlockEntity {
locals = LocalCapture.CAPTURE_FAILHARD,
cancellable = true
)
protected static void canAcceptRecipeOutputNBTCheck(@Nullable Recipe<?> recipe, DefaultedList<ItemStack> slots, int count, CallbackInfoReturnable<Boolean> cir, ItemStack recipeResult, ItemStack outputStack) {
private static void canAcceptRecipeOutputNBTCheck(@Nullable Recipe<?> recipe, DefaultedList<ItemStack> slots, int count, CallbackInfoReturnable<Boolean> cir, ItemStack recipeResult, ItemStack outputStack) {
if (!ItemStack.areNbtEqual(recipeResult, outputStack)) {
cir.setReturnValue(false);
}
Expand Down

0 comments on commit 784383b

Please sign in to comment.