Skip to content

Commit

Permalink
Merge pull request GeyserMC#2035 from Camotoy/brewingstandquickfix
Browse files Browse the repository at this point in the history
Fix brewing stand fuel input
  • Loading branch information
Camotoy authored Mar 14, 2021
2 parents 4af4d1f + e71ffa4 commit 2ebd7dc
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 2ebd7dc

Please sign in to comment.