aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0596-Configurable-item-frame-map-cursor-update-interval.patch
diff options
context:
space:
mode:
authorJake Potrebic <[email protected]>2024-04-26 16:43:59 -0700
committerJake Potrebic <[email protected]>2024-04-26 17:00:40 -0700
commitc38f96b0e57ad28f444dad8d1c4d2f1fb6ea19cb (patch)
tree419c16734eadf2568b42f966a6fc3a7e16728397 /patches/server/0596-Configurable-item-frame-map-cursor-update-interval.patch
parent6a4974b1b96312b31383fca985c5d409b3939b42 (diff)
downloadPaper-c38f96b0e57ad28f444dad8d1c4d2f1fb6ea19cb.tar.gz
Paper-c38f96b0e57ad28f444dad8d1c4d2f1fb6ea19cb.zip
deprecate our ItemRarity API
Diffstat (limited to 'patches/server/0596-Configurable-item-frame-map-cursor-update-interval.patch')
-rw-r--r--patches/server/0596-Configurable-item-frame-map-cursor-update-interval.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/0596-Configurable-item-frame-map-cursor-update-interval.patch b/patches/server/0596-Configurable-item-frame-map-cursor-update-interval.patch
new file mode 100644
index 0000000000..f06f3a327b
--- /dev/null
+++ b/patches/server/0596-Configurable-item-frame-map-cursor-update-interval.patch
@@ -0,0 +1,19 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Warrior <[email protected]>
+Date: Fri, 13 Aug 2021 01:14:38 +0200
+Subject: [PATCH] Configurable item frame map cursor update interval
+
+
+diff --git a/src/main/java/net/minecraft/server/level/ServerEntity.java b/src/main/java/net/minecraft/server/level/ServerEntity.java
+index 56408fa2603137819f47e7bd9b53b0b5f647edd6..19a7d0ab2ee5494149dfb0503b7c69784b7bee8b 100644
+--- a/src/main/java/net/minecraft/server/level/ServerEntity.java
++++ b/src/main/java/net/minecraft/server/level/ServerEntity.java
+@@ -117,7 +117,7 @@ public class ServerEntity {
+ if (true || this.tickCount % 10 == 0) { // CraftBukkit - Moved below, should always enter this block
+ ItemStack itemstack = entityitemframe.getItem();
+
+- if (this.tickCount % 10 == 0 && itemstack.getItem() instanceof MapItem) { // CraftBukkit - Moved this.tickCounter % 10 logic here so item frames do not enter the other blocks
++ if (this.level.paperConfig().maps.itemFrameCursorUpdateInterval > 0 && this.tickCount % this.level.paperConfig().maps.itemFrameCursorUpdateInterval == 0 && itemstack.getItem() instanceof MapItem) { // CraftBukkit - Moved this.tickCounter % 10 logic here so item frames do not enter the other blocks // Paper - Make item frame map cursor update interval configurable
+ MapId mapid = (MapId) itemstack.get(DataComponents.MAP_ID);
+ MapItemSavedData worldmap = MapItem.getSavedData(mapid, this.level);
+