Update to Minecraft 1.8
For more information please see http://www.spigotmc.org/ By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
18
paper-server/nms-patches/RecipeArmorDye.patch
Normal file
18
paper-server/nms-patches/RecipeArmorDye.patch
Normal file
@@ -0,0 +1,18 @@
|
||||
--- ../work/decompile-bb26c12b/net/minecraft/server/RecipeArmorDye.java 2014-11-27 08:59:46.869421107 +1100
|
||||
+++ src/main/java/net/minecraft/server/RecipeArmorDye.java 2014-11-27 08:42:10.116850981 +1100
|
||||
@@ -3,9 +3,13 @@
|
||||
import com.google.common.collect.Lists;
|
||||
import java.util.ArrayList;
|
||||
|
||||
-public class RecipeArmorDye implements IRecipe {
|
||||
+public class RecipeArmorDye extends ShapelessRecipes implements IRecipe { // CraftBukkit - added extends
|
||||
|
||||
- public RecipeArmorDye() {}
|
||||
+ // CraftBukkit start - Delegate to new parent class with bogus info
|
||||
+ public RecipeArmorDye() {
|
||||
+ super(new ItemStack(Items.LEATHER_HELMET, 0, 0), java.util.Arrays.asList(new ItemStack(Items.DYE, 0, 5)));
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
|
||||
public boolean a(InventoryCrafting inventorycrafting, World world) {
|
||||
ItemStack itemstack = null;
|
||||
Reference in New Issue
Block a user