aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0299-Added-EntityDamageItemEvent.patch
diff options
context:
space:
mode:
authorRiley Park <[email protected]>2024-05-15 17:06:59 -0700
committerGitHub <[email protected]>2024-05-15 17:06:59 -0700
commitf17519338bc589c045e0b32bfc37e048b23544d5 (patch)
treee50182ec698b4a9de8f366f485ee089b1901bbd9 /patches/api/0299-Added-EntityDamageItemEvent.patch
parent3fc93581bb876e8149b2ca423375a98f5ca12d27 (diff)
downloadPaper-f17519338bc589c045e0b32bfc37e048b23544d5.tar.gz
Paper-f17519338bc589c045e0b32bfc37e048b23544d5.zip
Expose server build information (#10729)
* Expose server build information * squash patches * final tweaks --------- Co-authored-by: Jake Potrebic <[email protected]> Co-authored-by: masmc05 <[email protected]>
Diffstat (limited to 'patches/api/0299-Added-EntityDamageItemEvent.patch')
-rw-r--r--patches/api/0299-Added-EntityDamageItemEvent.patch93
1 files changed, 93 insertions, 0 deletions
diff --git a/patches/api/0299-Added-EntityDamageItemEvent.patch b/patches/api/0299-Added-EntityDamageItemEvent.patch
new file mode 100644
index 0000000000..60513a1cbd
--- /dev/null
+++ b/patches/api/0299-Added-EntityDamageItemEvent.patch
@@ -0,0 +1,93 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jake Potrebic <[email protected]>
+Date: Tue, 22 Dec 2020 13:51:06 -0800
+Subject: [PATCH] Added EntityDamageItemEvent
+
+
+diff --git a/src/main/java/io/papermc/paper/event/entity/EntityDamageItemEvent.java b/src/main/java/io/papermc/paper/event/entity/EntityDamageItemEvent.java
+new file mode 100644
+index 0000000000000000000000000000000000000000..72ac972dea684a3ffac3bd48726746be0620af2e
+--- /dev/null
++++ b/src/main/java/io/papermc/paper/event/entity/EntityDamageItemEvent.java
+@@ -0,0 +1,81 @@
++package io.papermc.paper.event.entity;
++
++import org.bukkit.entity.Entity;
++import org.bukkit.event.Cancellable;
++import org.bukkit.event.HandlerList;
++import org.bukkit.event.entity.EntityEvent;
++import org.bukkit.inventory.ItemStack;
++import org.jetbrains.annotations.ApiStatus;
++import org.jetbrains.annotations.NotNull;
++
++/**
++ * Called when an item on or used by an entity takes durability damage as a result of being hit/used.
++ * <p>
++ * NOTE: default vanilla behaviour dictates that armor/tools picked up by
++ * mobs do not take damage (except via Thorns).
++ */
++public class EntityDamageItemEvent extends EntityEvent implements Cancellable {
++
++ private static final HandlerList HANDLER_LIST = new HandlerList();
++
++ private final ItemStack item;
++ private int damage;
++
++ private boolean cancelled;
++
++ @ApiStatus.Internal
++ public EntityDamageItemEvent(@NotNull Entity entity, @NotNull ItemStack item, int damage) {
++ super(entity);
++ this.item = item;
++ this.damage = damage;
++ }
++
++ /**
++ * Gets the item being damaged.
++ *
++ * @return the item
++ */
++ @NotNull
++ public ItemStack getItem() {
++ return this.item;
++ }
++
++ /**
++ * Gets the amount of durability damage this item will be taking.
++ *
++ * @return durability change
++ */
++ public int getDamage() {
++ return this.damage;
++ }
++
++ /**
++ * Sets the amount of durability damage this item will be taking.
++ *
++ * @param damage the damage amount to cause
++ */
++ public void setDamage(int damage) {
++ this.damage = damage;
++ }
++
++ @Override
++ public boolean isCancelled() {
++ return this.cancelled;
++ }
++
++ @Override
++ public void setCancelled(boolean cancel) {
++ this.cancelled = cancel;
++ }
++
++ @NotNull
++ @Override
++ public HandlerList getHandlers() {
++ return HANDLER_LIST;
++ }
++
++ @NotNull
++ public static HandlerList getHandlerList() {
++ return HANDLER_LIST;
++ }
++}