mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 04:09:54 +01:00
29 lines
925 B
Diff
29 lines
925 B
Diff
|
From 5f95f690767115879007e1971575bfe91d3b710e 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 05d7c4e..2723ccb 100644
|
||
|
--- a/src/main/java/net/minecraft/server/ItemStack.java
|
||
|
+++ b/src/main/java/net/minecraft/server/ItemStack.java
|
||
|
@@ -228,7 +228,13 @@ public final class ItemStack {
|
||
|
}
|
||
|
|
||
|
public boolean g() {
|
||
|
- return 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() {
|
||
|
--
|
||
|
1.9.1
|
||
|
|