Skip to content

Commit

Permalink
Fix brewing stand fuel input
Browse files Browse the repository at this point in the history
  • Loading branch information
Camotoy committed Mar 14, 2021
1 parent 4af4d1f commit e71ffa4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ public int javaSlotToBedrock(int slot) {
return 3;
case 3:
return 0;
case 4:
return 4;
}
return super.javaSlotToBedrock(slot);
}
Expand All @@ -105,7 +107,7 @@ public BedrockContainerSlot javaSlotToBedrockContainer(int slot) {
case 3:
return new BedrockContainerSlot(ContainerSlotType.BREWING_INPUT, 0);
case 4:
return new BedrockContainerSlot(ContainerSlotType.BREWING_INPUT, 0);
return new BedrockContainerSlot(ContainerSlotType.BREWING_FUEL, 4);
}
return super.javaSlotToBedrockContainer(slot);
}
Expand Down

0 comments on commit e71ffa4

Please sign in to comment.