2019-04-22 23:36:14 +02:00
|
|
|
From 6983ce9beb5d9de6bbc77810cee8af4b4cc3bb6b Mon Sep 17 00:00:00 2001
|
2017-11-11 05:46:55 +01:00
|
|
|
From: pkt77 <parkerkt77@gmail.com>
|
|
|
|
Date: Fri, 10 Nov 2017 23:46:34 -0500
|
|
|
|
Subject: [PATCH] Add PlayerArmorChangeEvent
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityLiving.java b/src/main/java/net/minecraft/server/EntityLiving.java
|
2019-04-22 23:36:14 +02:00
|
|
|
index 138a224e04..02fcfc449c 100644
|
2017-11-11 05:46:55 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityLiving.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityLiving.java
|
|
|
|
@@ -1,5 +1,6 @@
|
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
+import com.destroystokyo.paper.event.player.PlayerArmorChangeEvent;
|
|
|
|
import com.google.common.base.Objects;
|
|
|
|
import com.google.common.collect.Maps;
|
|
|
|
import java.util.Collection;
|
2019-02-25 08:56:39 +01:00
|
|
|
@@ -2085,6 +2086,13 @@ public abstract class EntityLiving extends Entity {
|
2017-11-11 05:46:55 +01:00
|
|
|
ItemStack itemstack1 = this.getEquipment(enumitemslot);
|
|
|
|
|
|
|
|
if (!ItemStack.matches(itemstack1, itemstack)) {
|
|
|
|
+ // Paper start - PlayerArmorChangeEvent
|
2019-03-03 21:21:51 +01:00
|
|
|
+ if (this instanceof EntityPlayer && enumitemslot.getType() == EnumItemSlot.Function.ARMOR) {
|
2017-11-11 05:46:55 +01:00
|
|
|
+ final org.bukkit.inventory.ItemStack oldItem = CraftItemStack.asBukkitCopy(itemstack);
|
|
|
|
+ final org.bukkit.inventory.ItemStack newItem = CraftItemStack.asBukkitCopy(itemstack1);
|
|
|
|
+ new PlayerArmorChangeEvent((Player) this.getBukkitEntity(), PlayerArmorChangeEvent.SlotType.valueOf(enumitemslot.name()), oldItem, newItem).callEvent();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
((WorldServer) this.world).getTracker().a((Entity) this, (Packet) (new PacketPlayOutEntityEquipment(this.getId(), enumitemslot, itemstack1)));
|
|
|
|
if (!itemstack.isEmpty()) {
|
|
|
|
this.getAttributeMap().a(itemstack.a(enumitemslot));
|
2017-11-11 06:07:45 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/EnumItemSlot.java b/src/main/java/net/minecraft/server/EnumItemSlot.java
|
2019-04-22 23:36:14 +02:00
|
|
|
index a9a1339933..8f4b5dca94 100644
|
2017-11-11 06:07:45 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EnumItemSlot.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EnumItemSlot.java
|
2019-01-01 04:15:55 +01:00
|
|
|
@@ -16,6 +16,7 @@ public enum EnumItemSlot {
|
|
|
|
this.j = s;
|
2017-11-11 06:07:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
+ public EnumItemSlot.Function getType() { return this.a(); } // Paper - OBFHELPER
|
|
|
|
public EnumItemSlot.Function a() {
|
|
|
|
return this.g;
|
|
|
|
}
|
2017-11-11 05:46:55 +01:00
|
|
|
--
|
2019-03-03 21:21:51 +01:00
|
|
|
2.21.0
|
2017-11-11 05:46:55 +01:00
|
|
|
|