2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/IRecipe.java
|
|
|
|
+++ b/net/minecraft/server/IRecipe.java
|
2017-05-16 13:22:07 +02:00
|
|
|
@@ -3,6 +3,7 @@
|
|
|
|
public abstract class IRecipe implements Comparable<IRecipe> {
|
|
|
|
|
|
|
|
protected String a;
|
|
|
|
+ public MinecraftKey key; // CraftBukkit
|
|
|
|
|
|
|
|
public IRecipe() {
|
|
|
|
this("");
|
|
|
|
@@ -25,10 +26,24 @@
|
|
|
|
}
|
|
|
|
|
|
|
|
public int a(IRecipe irecipe) {
|
2017-05-19 13:00:13 +02:00
|
|
|
- return ((MinecraftKey) CraftingManager.recipes.b(this)).toString().compareTo(((MinecraftKey) CraftingManager.recipes.b(irecipe)).toString());
|
|
|
|
+ return this.key.toString().compareTo(irecipe.key.toString()); // CraftBukkit
|
2017-05-14 04:00:00 +02:00
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2017-05-14 04:00:00 +02:00
|
|
|
- public int compareTo(Object object) {
|
2017-05-16 13:22:07 +02:00
|
|
|
+ public int compareTo(IRecipe object) { // CraftBukkit - decompile error
|
2017-05-14 04:00:00 +02:00
|
|
|
return this.a((IRecipe) object);
|
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2017-05-16 13:22:07 +02:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ @Override
|
|
|
|
+ public boolean equals(Object obj) {
|
|
|
|
+ return obj instanceof IRecipe && key.equals(((IRecipe) obj).key);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public int hashCode() {
|
|
|
|
+ return key.hashCode();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public abstract org.bukkit.inventory.Recipe toBukkitRecipe();
|
|
|
|
+ // CraftBukkit end
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|