Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
reobf committed Jan 24, 2025
1 parent d915104 commit 79bcb71
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public void MixinMultiPattern_executeCrafting(IEnergyGrid eg, CraftingGridCache
for (int x = 0; x < ic.getSizeInventory(); x++) {
ItemStack is = ic.getStackInSlot(x);
if (is != null) {
if(is.getItem() instanceof ItemFluidDrop){
if(is.getItem() instanceof ItemFluidPacket){

is=ItemFluidDrop.newStack(ItemFluidPacket.getFluidStack(is));

Expand Down Expand Up @@ -297,7 +297,7 @@ public void MixinMultiPattern_executeCrafting(IEnergyGrid eg, CraftingGridCache
ItemStack is = ic.getStackInSlot(x);

if (is != null) {
if(is.getItem() instanceof ItemFluidDrop){
if(is.getItem() instanceof ItemFluidPacket){

is=ItemFluidDrop.newStack(ItemFluidPacket.getFluidStack(is));

Expand Down

0 comments on commit 79bcb71

Please sign in to comment.