mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-18 00:47:42 +01:00
Upstream has released updates that appear to apply and compile correctly Paper Changes: PaperMC/Paper@3fc9358 Show stacktrace when modifyItemStack fails PaperMC/Paper@f175193 Expose server build information (#10729)
74 lines
2.1 KiB
Diff
74 lines
2.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: William Blake Galbreath <Blake.Galbreath@GMail.com>
|
|
Date: Sat, 22 Aug 2020 17:42:08 -0500
|
|
Subject: [PATCH] Item entity immunities
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Item.java b/src/main/java/org/bukkit/entity/Item.java
|
|
index bcc6ba95bd21c7972865838c636a03f50b6c1f1a..c3fcd8dd7dbb1e1a18e17c014c1e641149ea5960 100644
|
|
--- a/src/main/java/org/bukkit/entity/Item.java
|
|
+++ b/src/main/java/org/bukkit/entity/Item.java
|
|
@@ -153,4 +153,62 @@ public interface Item extends Entity, io.papermc.paper.entity.Frictional { // Pa
|
|
*/
|
|
public void setHealth(int health);
|
|
// Paper end
|
|
+
|
|
+ // Purpur start
|
|
+ /**
|
|
+ * Set whether or not this item is immune to cactus
|
|
+ *
|
|
+ * @param immuneToCactus True to make immune to cactus
|
|
+ */
|
|
+ void setImmuneToCactus(boolean immuneToCactus);
|
|
+
|
|
+ /**
|
|
+ * Check if item is immune to cactus
|
|
+ *
|
|
+ * @return True if immune to cactus
|
|
+ */
|
|
+ boolean isImmuneToCactus();
|
|
+
|
|
+ /**
|
|
+ * Set whether or not this item is immune to explosions
|
|
+ *
|
|
+ * @param immuneToExplosion True to make immune to explosions
|
|
+ */
|
|
+ void setImmuneToExplosion(boolean immuneToExplosion);
|
|
+
|
|
+ /**
|
|
+ * Check if item is immune to explosions
|
|
+ *
|
|
+ * @return True if immune to explosions
|
|
+ */
|
|
+ boolean isImmuneToExplosion();
|
|
+
|
|
+ /**
|
|
+ * Set whether or not this item is immune to fire
|
|
+ *
|
|
+ * @param immuneToFire True to make immune to fire
|
|
+ */
|
|
+ void setImmuneToFire(boolean immuneToFire);
|
|
+
|
|
+ /**
|
|
+ * Check if item is immune to fire
|
|
+ *
|
|
+ * @return True if immune to fire
|
|
+ */
|
|
+ boolean isImmuneToFire();
|
|
+
|
|
+ /**
|
|
+ * Set whether or not this item is immune to lightning
|
|
+ *
|
|
+ * @param immuneToLightning True to make immune to lightning
|
|
+ */
|
|
+ void setImmuneToLightning(boolean immuneToLightning);
|
|
+
|
|
+ /**
|
|
+ * Check if item is immune to lightning
|
|
+ *
|
|
+ * @return True if immune to lightning
|
|
+ */
|
|
+ boolean isImmuneToLightning();
|
|
+ // Purpur end
|
|
}
|