mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
461353e2cb
This was useful when plugins first started upgrading to uuid because each plugin would implement their own way for grabbing uuid's from mojang. Because none of them shared the result they would quickly hit the limits on the api causing the conversion to either fail or pause for long periods of time. The global api cache was a (very hacky) way to force all plugins to share a cache but caused a few issues with plugins that expected a full implementation of the HTTPURLConnection. Due to the fact that most servers/plugins have updated now it seems to be a good time to remove this as its usefulness mostly has expired.
29 lines
955 B
Diff
29 lines
955 B
Diff
From 5fcbd44f2fec14fbf432c011c81867e18f0d6dc4 Mon Sep 17 00:00:00 2001
|
|
From: md_5 <git@md-5.net>
|
|
Date: Fri, 10 Jan 2014 15:15:50 +1100
|
|
Subject: [PATCH] Fix ItemStack Unbreakable Code
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ItemStack.java b/src/main/java/net/minecraft/server/ItemStack.java
|
|
index 3e0d808..596db09 100644
|
|
--- a/src/main/java/net/minecraft/server/ItemStack.java
|
|
+++ b/src/main/java/net/minecraft/server/ItemStack.java
|
|
@@ -270,7 +270,13 @@ public final class ItemStack {
|
|
}
|
|
|
|
public boolean e() {
|
|
- return this.item == null ? false : (this.item.getMaxDurability() <= 0 ? false : !this.hasTag() || !this.getTag().getBoolean("Unbreakable"));
|
|
+ // Spigot Start
|
|
+ if ( this.item.getMaxDurability() <= 0 )
|
|
+ {
|
|
+ return false;
|
|
+ }
|
|
+ return ( !hasTag() ) || ( !getTag().getBoolean( "Unbreakable" ) );
|
|
+ // Spigot End
|
|
}
|
|
|
|
public boolean usesData() {
|
|
--
|
|
2.1.0
|
|
|