blob: a24940171ba09f59e17bbe6137df4f684cabf5fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
package net.minecraft.server;
// CraftBukkit start
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
import org.bukkit.entity.HumanEntity;
// CraftBukkit end
public class InventoryCraftResult implements IInventory {
private ItemStack[] items = new ItemStack[1];
// CraftBukkit start
private int maxStack = MAX_STACK;
public ItemStack[] getContents() {
return this.items;
}
public org.bukkit.inventory.InventoryHolder getOwner() {
return null; // Result slots don't get an owner
}
// Don't need a transaction; the InventoryCrafting keeps track of it for us
public void onOpen(CraftHumanEntity who) {}
public void onClose(CraftHumanEntity who) {}
public java.util.List<HumanEntity> getViewers() {
return new java.util.ArrayList<HumanEntity>();
}
public void setMaxStackSize(int size) {
maxStack = size;
}
// CraftBukkit end
public InventoryCraftResult() {}
public int getSize() {
return 1;
}
public ItemStack getItem(int i) {
return this.items[0];
}
public String getName() {
return "Result";
}
public ItemStack splitStack(int i, int j) {
if (this.items[0] != null) {
ItemStack itemstack = this.items[0];
this.items[0] = null;
return itemstack;
} else {
return null;
}
}
public ItemStack splitWithoutUpdate(int i) {
if (this.items[0] != null) {
ItemStack itemstack = this.items[0];
this.items[0] = null;
return itemstack;
} else {
return null;
}
}
public void setItem(int i, ItemStack itemstack) {
this.items[0] = itemstack;
}
public int getMaxStackSize() {
return maxStack; // CraftBukkit
}
public void update() {}
public boolean a_(EntityHuman entityhuman) {
return true;
}
public void startOpen() {}
public void f() {}
}
|