mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 01:10:37 +01:00
29 lines
955 B
Diff
29 lines
955 B
Diff
From 61c54a8a1c06464bdb8bd07b5a0936157ab39813 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 782ca57..4a43208 100644
|
|
--- a/src/main/java/net/minecraft/server/ItemStack.java
|
|
+++ b/src/main/java/net/minecraft/server/ItemStack.java
|
|
@@ -286,7 +286,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.5.0
|
|
|