Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -431,11 +431,7 @@ public void readNbt(CompoundTag tag, HolderLookup.Provider registries, boolean i
this.maxEfficiencyTicks = tag.getInt("maxEfficiencyTicks");
}

/**
* cachedItemCounts must be correct when this function is called, and are
* guaranteed to be correct after this call
*/
private boolean takeItemInputs(MachineRecipe recipe, boolean simulate) {
protected boolean takeItemInputs(MachineRecipe recipe, boolean simulate) {
List<ConfigurableItemStack> baseList = inventory.getItemInputs();
List<ConfigurableItemStack> stacks = simulate ? ConfigurableItemStack.copyList(baseList) : baseList;

Expand Down
Loading