blob: 94218a7eb972144586a18a18ace0d01dadd379db (
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
89
90
91
92
|
package net.minecraft.server;
import java.util.List;
public abstract class InventorySubcontainer implements IInventory { // CraftBukkit - abstract
private String a;
private int b;
protected ItemStack[] items; // CraftBukkit - protected
private List d;
public InventorySubcontainer(String s, int i) {
this.a = s;
this.b = i;
this.items = new ItemStack[i];
}
public ItemStack getItem(int i) {
return this.items[i];
}
public ItemStack splitStack(int i, int j) {
if (this.items[i] != null) {
ItemStack itemstack;
if (this.items[i].count <= j) {
itemstack = this.items[i];
this.items[i] = null;
this.update();
return itemstack;
} else {
itemstack = this.items[i].a(j);
if (this.items[i].count == 0) {
this.items[i] = null;
}
this.update();
return itemstack;
}
} else {
return null;
}
}
public ItemStack splitWithoutUpdate(int i) {
if (this.items[i] != null) {
ItemStack itemstack = this.items[i];
this.items[i] = null;
return itemstack;
} else {
return null;
}
}
public void setItem(int i, ItemStack itemstack) {
this.items[i] = itemstack;
if (itemstack != null && itemstack.count > this.getMaxStackSize()) {
itemstack.count = this.getMaxStackSize();
}
this.update();
}
public int getSize() {
return this.b;
}
public String getName() {
return this.a;
}
public int getMaxStackSize() {
return 64;
}
public void update() {
if (this.d != null) {
for (int i = 0; i < this.d.size(); ++i) {
((IInventoryListener) this.d.get(i)).a(this);
}
}
}
public boolean a_(EntityHuman entityhuman) {
return true;
}
public void startOpen() {}
public void f() {}
}
|