blob: 5090563f77e0825ea3f12db27f375bcd8e6840a0 (
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
|
package net.minecraft.server;
public class InventoryLargeChest implements IInventory {
private String a;
private IInventory b;
private IInventory c;
// CraftBukkit start
public ItemStack[] getContents() {
ItemStack[] result = new ItemStack[this.getSize()];
for (int i = 0; i < result.length; i++) {
result[i] = this.getItem(i);
}
return result;
}
// CraftBukkit end
public InventoryLargeChest(String s, IInventory iinventory, IInventory iinventory1) {
this.a = s;
if (iinventory == null) {
iinventory = iinventory1;
}
if (iinventory1 == null) {
iinventory1 = iinventory;
}
this.b = iinventory;
this.c = iinventory1;
}
public int getSize() {
return this.b.getSize() + this.c.getSize();
}
public String getName() {
return this.a;
}
public ItemStack getItem(int i) {
return i >= this.b.getSize() ? this.c.getItem(i - this.b.getSize()) : this.b.getItem(i);
}
public ItemStack splitStack(int i, int j) {
return i >= this.b.getSize() ? this.c.splitStack(i - this.b.getSize(), j) : this.b.splitStack(i, j);
}
public void setItem(int i, ItemStack itemstack) {
if (i >= this.b.getSize()) {
this.c.setItem(i - this.b.getSize(), itemstack);
} else {
this.b.setItem(i, itemstack);
}
}
public int getMaxStackSize() {
return this.b.getMaxStackSize();
}
public void update() {
this.b.update();
this.c.update();
}
public boolean a(EntityHuman entityhuman) {
return this.b.a(entityhuman) && this.c.a(entityhuman);
}
public void f() {
this.b.f();
this.c.f();
}
public void g() {
this.b.g();
this.c.g();
}
}
|