Paper/src/main/java/net/minecraft/server/RecipeMapClone.java

83 Zeilen
2.2 KiB
Java

package net.minecraft.server;
2012-12-20 05:03:52 +01:00
public class RecipeMapClone extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
2013-03-25 05:22:32 +01:00
// CraftBukkit start - Delegate to new parent class
2012-12-20 05:03:52 +01:00
public RecipeMapClone() {
2013-11-04 14:07:38 +01:00
super(new ItemStack(Items.MAP, 0, -1), java.util.Arrays.asList(new ItemStack(Items.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) {
2013-11-04 14:07:38 +01:00
if (itemstack1.getItem() == Items.MAP) {
if (itemstack != null) {
return false;
}
itemstack = itemstack1;
} else {
2013-11-04 14:07:38 +01:00
if (itemstack1.getItem() != Items.MAP_EMPTY) {
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) {
2013-11-04 14:07:38 +01:00
if (itemstack1.getItem() == Items.MAP) {
if (itemstack != null) {
return null;
}
itemstack = itemstack1;
} else {
2013-11-04 14:07:38 +01:00
if (itemstack1.getItem() != Items.MAP_EMPTY) {
return null;
}
++i;
}
}
}
if (itemstack != null && i >= 1) {
2013-11-04 14:07:38 +01:00
ItemStack itemstack2 = new ItemStack(Items.MAP, i + 1, itemstack.getData());
2012-11-06 13:05:28 +01:00
2013-03-13 23:33:27 +01:00
if (itemstack.hasName()) {
itemstack2.c(itemstack.getName());
2012-11-06 13:05:28 +01:00
}
return itemstack2;
} else {
return null;
}
}
public int a() {
return 9;
}
public ItemStack b() {
return null;
}
}