Minor optimization getting chest inventories

Dieser Commit ist enthalten in:
Nathan Adams 2012-03-02 20:05:23 +00:00
Ursprung 88149dc439
Commit ede443234e

Datei anzeigen

@ -23,11 +23,10 @@ public class CraftChest extends CraftBlockState implements Chest {
}
public Inventory getInventory() {
int x = getX();
int y = getY();
int z = getZ();
// The logic here is basically identical to the logic in BlockChest.interact
Location loc = getLocation();
int x = loc.getBlockX();
int y = loc.getBlockY();
int z = loc.getBlockZ();
CraftInventory inventory = new CraftInventory(chest);
if (world.getBlockTypeIdAt(x - 1, y, z) == Material.CHEST.getId()) {
CraftInventory left = new CraftInventory((TileEntityChest)world.getHandle().getTileEntity(x - 1, y, z));