mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 13:06:02 +01:00
SPIGOT-1039: Improve DoubleChest semantics
This commit is contained in:
parent
f068c5e843
commit
4c1e9342cb
@ -8,6 +8,7 @@ import org.bukkit.inventory.Inventory;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
||||
import net.minecraft.server.InventoryLargeChest;
|
||||
import org.bukkit.Location;
|
||||
|
||||
public class CraftInventoryDoubleChest extends CraftInventory implements DoubleChestInventory {
|
||||
private final CraftInventory left;
|
||||
@ -59,4 +60,9 @@ public class CraftInventoryDoubleChest extends CraftInventory implements DoubleC
|
||||
public DoubleChest getHolder() {
|
||||
return new DoubleChest(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Location getLocation() {
|
||||
return getLeftSide().getLocation().add(getRightSide().getLocation()).multiply(0.5);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user