blob: f0e697364c9c45ed45a4c9a3ffeb9ea1a70ce2a3 (
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 java.util.List;
import org.bukkit.craftbukkit.inventory.CraftItemStack;
import org.bukkit.craftbukkit.inventory.CraftShapelessRecipe;
// CraftBukkit end
public class RecipesMapClone extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
// CraftBukkit start - delegate to new parent class
public RecipesMapClone() {
super(new ItemStack(Item.MAP, 0, -1), java.util.Arrays.asList(new ItemStack(Item.MAP_EMPTY, 0, 0)));
}
// CraftBukkit end
public boolean a(InventoryCrafting inventorycrafting, World world) {
int i = 0;
ItemStack itemstack = null;
for (int j = 0; j < inventorycrafting.getSize(); ++j) {
ItemStack itemstack1 = inventorycrafting.getItem(j);
if (itemstack1 != null) {
if (itemstack1.id == Item.MAP.id) {
if (itemstack != null) {
return false;
}
itemstack = itemstack1;
} else {
if (itemstack1.id != Item.MAP_EMPTY.id) {
return false;
}
++i;
}
}
}
return itemstack != null && i > 0;
}
public ItemStack a(InventoryCrafting inventorycrafting) {
int i = 0;
ItemStack itemstack = null;
for (int j = 0; j < inventorycrafting.getSize(); ++j) {
ItemStack itemstack1 = inventorycrafting.getItem(j);
if (itemstack1 != null) {
if (itemstack1.id == Item.MAP.id) {
if (itemstack != null) {
return null;
}
itemstack = itemstack1;
} else {
if (itemstack1.id != Item.MAP_EMPTY.id) {
return null;
}
++i;
}
}
}
if (itemstack != null && i >= 1) {
ItemStack itemstack2 = new ItemStack(Item.MAP, i + 1, itemstack.getData());
if (itemstack.s()) {
itemstack2.c(itemstack.r());
}
return itemstack2;
} else {
return null;
}
}
public int a() {
return 9;
}
public ItemStack b() {
return null;
}
}
|