inventory fixes

This commit is contained in:
Tahg
2011-02-08 19:37:53 -05:00
parent b76bc9cfb3
commit 61b79e8f98
6 changed files with 15 additions and 11 deletions

View File

@@ -31,9 +31,6 @@ public class EntityMinecart extends Entity implements IInventory {
private double at;
// CraftBukkit start
protected org.bukkit.entity.Entity bukkitPoweredMinecart;
protected org.bukkit.entity.Entity bukkitStorageMinecart;
private boolean slowWhenEmpty = true;
private double derailedX = 0.5;
private double derailedY = 0.5;
@@ -49,7 +46,7 @@ public class EntityMinecart extends Entity implements IInventory {
public EntityMinecart(World world) {
super(world);
this.al = new ItemStack[36];
this.al = new ItemStack[27]; //Craftbukkit
this.a = 0;
this.b = 0;
this.c = 1;

View File

@@ -13,7 +13,7 @@ public class InventoryCraftResult implements IInventory {
public InventoryCraftResult() {}
public int h_() {
return 1;
return this.a.length; //Craftbukkit
}
public ItemStack a(int i) {

View File

@@ -231,7 +231,7 @@ public class InventoryPlayer implements IInventory {
}
public int h_() {
return this.a.length + 4;
return this.a.length + this.b.length; //Craftbukkit
}
public ItemStack a(int i) {

View File

@@ -2,7 +2,7 @@ package net.minecraft.server;
public class TileEntityChest extends TileEntity implements IInventory {
private ItemStack[] e = new ItemStack[36];
private ItemStack[] e = new ItemStack[27]; //Craftbukkit
// CraftBukkit start
public ItemStack[] getContents() {
@@ -13,7 +13,7 @@ public class TileEntityChest extends TileEntity implements IInventory {
public TileEntityChest() {}
public int h_() {
return 27;
return this.e.length;
}
public ItemStack a(int i) {

View File

@@ -16,7 +16,7 @@ public class TileEntityDispenser extends TileEntity implements IInventory {
public TileEntityDispenser() {}
public int h_() {
return 9;
return this.e.length; //Craftbukkit
}
public ItemStack a(int i) {