summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/RecipeMapClone.java
diff options
context:
space:
mode:
authorThinkofdeath <thinkofdeath@spigotmc.org>2014-11-26 08:32:16 +1100
committermd_5 <git@md-5.net>2014-11-28 17:16:30 +1100
commit24557bc2b37deb6a0edf497d547471832457b1dd (patch)
treec560572889a3b0b34964a0cddb35dc87fda3c914 /src/main/java/net/minecraft/server/RecipeMapClone.java
parenta4805dbd77da057cc1ea0bf344379bc6e53ca1f6 (diff)
downloadcraftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.gz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.lz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.tar.xz
craftbukkit-24557bc2b37deb6a0edf497d547471832457b1dd.zip
Update to Minecraft 1.8
For more information please see http://www.spigotmc.org/
Diffstat (limited to 'src/main/java/net/minecraft/server/RecipeMapClone.java')
-rw-r--r--src/main/java/net/minecraft/server/RecipeMapClone.java82
1 files changed, 0 insertions, 82 deletions
diff --git a/src/main/java/net/minecraft/server/RecipeMapClone.java b/src/main/java/net/minecraft/server/RecipeMapClone.java
deleted file mode 100644
index 793883fe..00000000
--- a/src/main/java/net/minecraft/server/RecipeMapClone.java
+++ /dev/null
@@ -1,82 +0,0 @@
-package net.minecraft.server;
-
-public class RecipeMapClone extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
-
- // CraftBukkit start - Delegate to new parent class
- public RecipeMapClone() {
- 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) {
- if (itemstack1.getItem() == Items.MAP) {
- if (itemstack != null) {
- return false;
- }
-
- itemstack = itemstack1;
- } else {
- 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) {
- if (itemstack1.getItem() == Items.MAP) {
- if (itemstack != null) {
- return null;
- }
-
- itemstack = itemstack1;
- } else {
- if (itemstack1.getItem() != Items.MAP_EMPTY) {
- return null;
- }
-
- ++i;
- }
- }
- }
-
- if (itemstack != null && i >= 1) {
- ItemStack itemstack2 = new ItemStack(Items.MAP, i + 1, itemstack.getData());
-
- if (itemstack.hasName()) {
- itemstack2.c(itemstack.getName());
- }
-
- return itemstack2;
- } else {
- return null;
- }
- }
-
- public int a() {
- return 9;
- }
-
- public ItemStack b() {
- return null;
- }
-}