Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-17 05:20:05 +01:00
cab333b217
Don't send requests of every player was found in the global api cache SpigotMC/Spigot@841270ff1e Correctly set the response code for the cached lookups and return the ... SpigotMC/Spigot@f170b7899c Don't try and re-set the global api cache on reload SpigotMC/Spigot@b410a00a66 Use a compile time sneaky throw hack. SpigotMC/Spigot@508462b96b Fix a missed rename in WorldGenGroundBush SpigotMC/Spigot@0614d8fae9
55 Zeilen
2.3 KiB
Diff
55 Zeilen
2.3 KiB
Diff
From e966fa6d6dc7ef524fb7285960bdcd8744e9d232 Mon Sep 17 00:00:00 2001
|
|
From: md_5 <md_5@live.com.au>
|
|
Date: Mon, 4 Mar 2013 18:45:52 +1100
|
|
Subject: [PATCH] PlayerItemDamageEvent
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ItemStack.java b/src/main/java/net/minecraft/server/ItemStack.java
|
|
index c9d74d3..a2ab06a 100644
|
|
--- a/src/main/java/net/minecraft/server/ItemStack.java
|
|
+++ b/src/main/java/net/minecraft/server/ItemStack.java
|
|
@@ -279,7 +279,13 @@ public final class ItemStack {
|
|
return this.item.getMaxDurability();
|
|
}
|
|
|
|
+ // Spigot start
|
|
public boolean isDamaged(int i, Random random) {
|
|
+ return isDamaged(i, random, null);
|
|
+ }
|
|
+
|
|
+ public boolean isDamaged(int i, Random random, EntityLiving entityliving) {
|
|
+ // Spigot end
|
|
if (!this.g()) {
|
|
return false;
|
|
} else {
|
|
@@ -294,7 +300,16 @@ public final class ItemStack {
|
|
}
|
|
|
|
i -= k;
|
|
- if (i <= 0) {
|
|
+ // Spigot start
|
|
+ if (entityliving instanceof EntityPlayer) {
|
|
+ org.bukkit.craftbukkit.inventory.CraftItemStack item = org.bukkit.craftbukkit.inventory.CraftItemStack.asCraftMirror(this);
|
|
+ org.bukkit.event.player.PlayerItemDamageEvent event = new org.bukkit.event.player.PlayerItemDamageEvent((org.bukkit.entity.Player) entityliving.getBukkitEntity(), item, i);
|
|
+ org.bukkit.Bukkit.getServer().getPluginManager().callEvent(event);
|
|
+ if (event.isCancelled()) return false;
|
|
+ i = event.getDamage();
|
|
+ }
|
|
+ // Spigot end
|
|
+ if (i <= 0 ) {
|
|
return false;
|
|
}
|
|
}
|
|
@@ -307,7 +322,7 @@ public final class ItemStack {
|
|
public void damage(int i, EntityLiving entityliving) {
|
|
if (!(entityliving instanceof EntityHuman) || !((EntityHuman) entityliving).abilities.canInstantlyBuild) {
|
|
if (this.g()) {
|
|
- if (this.isDamaged(i, entityliving.aI())) {
|
|
+ if (this.isDamaged(i, entityliving.aI(), entityliving)) { // Spigot
|
|
entityliving.a(this);
|
|
--this.count;
|
|
if (entityliving instanceof EntityHuman) {
|
|
--
|
|
1.9.1
|
|
|