2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityMinecartContainer.java
|
|
|
|
+++ b/net/minecraft/server/EntityMinecartContainer.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -2,14 +2,57 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
import java.util.Random;
|
2016-05-10 13:47:39 +02:00
|
|
|
import javax.annotation.Nullable;
|
2014-11-25 22:32:16 +01:00
|
|
|
+// CraftBukkit start
|
|
|
|
+import java.util.List;
|
2016-05-10 13:47:39 +02:00
|
|
|
+import org.bukkit.Location;
|
2014-11-25 22:32:16 +01:00
|
|
|
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
|
|
+import org.bukkit.entity.HumanEntity;
|
|
|
|
+import org.bukkit.inventory.InventoryHolder;
|
|
|
|
+// CraftBukkit end
|
2016-02-29 22:32:46 +01:00
|
|
|
|
|
|
|
public abstract class EntityMinecartContainer extends EntityMinecartAbstract implements ITileInventory, ILootable {
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
- private ItemStack[] items = new ItemStack[36];
|
|
|
|
+ private ItemStack[] items = new ItemStack[27]; // CraftBukkit - 36 -> 27
|
|
|
|
private boolean b = true;
|
2016-02-29 22:32:46 +01:00
|
|
|
private MinecraftKey c;
|
|
|
|
private long d;
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
|
|
|
|
+ private int maxStack = MAX_STACK;
|
|
|
|
+
|
|
|
|
+ public ItemStack[] getContents() {
|
|
|
|
+ return this.items;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void onOpen(CraftHumanEntity who) {
|
|
|
|
+ transaction.add(who);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void onClose(CraftHumanEntity who) {
|
|
|
|
+ transaction.remove(who);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public List<HumanEntity> getViewers() {
|
|
|
|
+ return transaction;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public InventoryHolder getOwner() {
|
|
|
|
+ org.bukkit.entity.Entity cart = getBukkitEntity();
|
|
|
|
+ if(cart instanceof InventoryHolder) return (InventoryHolder) cart;
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setMaxStackSize(int size) {
|
|
|
|
+ maxStack = size;
|
|
|
|
+ }
|
2016-05-10 13:47:39 +02:00
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public Location getLocation() {
|
|
|
|
+ return getBukkitEntity().getLocation();
|
|
|
|
+ }
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
public EntityMinecartContainer(World world) {
|
|
|
|
super(world);
|
2015-02-26 23:41:06 +01:00
|
|
|
}
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -75,7 +118,7 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getMaxStackSize() {
|
|
|
|
- return 64;
|
|
|
|
+ return maxStack; // CraftBukkit
|
|
|
|
}
|
|
|
|
|
2016-05-10 13:47:39 +02:00
|
|
|
@Nullable
|