mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix offset issue
This commit is contained in:
parent
c1f5380ed1
commit
06f346b30b
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ public abstract class ChestedHorseInventoryTranslator extends AbstractHorseInven
|
|||
if (slot == this.equipSlot) {
|
||||
return new BedrockContainerSlot(ContainerSlotType.HORSE_EQUIP, 0);
|
||||
}
|
||||
if (slot <= this.size) {
|
||||
if (slot <= this.size - 1) { // Accommodate for the lack of one slot (saddle or armor)
|
||||
return new BedrockContainerSlot(ContainerSlotType.CONTAINER, slot - 1);
|
||||
}
|
||||
return super.javaSlotToBedrockContainer(slot);
|
||||
|
@ -77,7 +77,7 @@ public abstract class ChestedHorseInventoryTranslator extends AbstractHorseInven
|
|||
if (slot == 0 && this.equipSlot == 0) {
|
||||
return 0;
|
||||
}
|
||||
if (slot <= this.size) {
|
||||
if (slot <= this.size - 1) {
|
||||
return slot - 1;
|
||||
}
|
||||
return super.javaSlotToBedrock(slot);
|
||||
|
|
Loading…
Reference in a new issue