1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-23 16:59:33 +00:00

Fix brewing stand fuel input

This commit is contained in:
Camotoy
2021-03-13 23:09:37 -05:00
parent 4af4d1f800
commit e71ffa455f

View File

@@ -91,6 +91,8 @@ public class BrewingInventoryTranslator extends AbstractBlockInventoryTranslator
return 3; return 3;
case 3: case 3:
return 0; return 0;
case 4:
return 4;
} }
return super.javaSlotToBedrock(slot); return super.javaSlotToBedrock(slot);
} }
@@ -105,7 +107,7 @@ public class BrewingInventoryTranslator extends AbstractBlockInventoryTranslator
case 3: case 3:
return new BedrockContainerSlot(ContainerSlotType.BREWING_INPUT, 0); return new BedrockContainerSlot(ContainerSlotType.BREWING_INPUT, 0);
case 4: case 4:
return new BedrockContainerSlot(ContainerSlotType.BREWING_INPUT, 0); return new BedrockContainerSlot(ContainerSlotType.BREWING_FUEL, 4);
} }
return super.javaSlotToBedrockContainer(slot); return super.javaSlotToBedrockContainer(slot);
} }