Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
ef0e5a642d
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 9ae3f10f SPIGOT-3842: Add Player#fireworkBoost() and expand Firework API 48c0c547 PR-786: Add methods to get sounds from entities CraftBukkit Changes: 5cc9c022a SPIGOT-7152: Handle hand item changing during air interact event 4ffa1acf6 SPIGOT-7154: Players get kicked when interacting with a conversation 4daa21123 SPIGOT-3842: Add Player#fireworkBoost() and expand Firework API e5d6a9bbf PR-1100: Add methods to get sounds from entities b7e9f1c8b SPIGOT-7146: Reduce use of Material switch in ItemMeta Spigot Changes: 4c157bb4 Rebuild patches
38 Zeilen
1.2 KiB
Diff
38 Zeilen
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
|
Date: Sun, 26 Dec 2021 20:27:49 -0500
|
|
Subject: [PATCH] Freeze Tick Lock API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Entity.java b/src/main/java/org/bukkit/entity/Entity.java
|
|
index 80140c8636c10553c1be741b7e4e5084007279e5..461e29a0abbb021c886bffec71c948e1edc3d222 100644
|
|
--- a/src/main/java/org/bukkit/entity/Entity.java
|
|
+++ b/src/main/java/org/bukkit/entity/Entity.java
|
|
@@ -279,6 +279,26 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
|
|
*/
|
|
boolean isFrozen();
|
|
|
|
+ // Paper Start - Freeze Tick Lock API
|
|
+ /**
|
|
+ * Gets if the entity currently has its freeze ticks locked
|
|
+ * to a set amount.
|
|
+ * <p>
|
|
+ * This is only set by plugins
|
|
+ *
|
|
+ * @return locked or not
|
|
+ */
|
|
+ boolean isFreezeTickingLocked();
|
|
+
|
|
+ /**
|
|
+ * Sets if the entity currently has its freeze ticks locked,
|
|
+ * preventing default vanilla freeze tick modification.
|
|
+ *
|
|
+ * @param locked prevent vanilla modification or not
|
|
+ */
|
|
+ void lockFreezeTicks(boolean locked);
|
|
+ // Paper End - Freeze Tick Lock API
|
|
+
|
|
/**
|
|
* Mark the entity's removal.
|
|
*/
|