Paper/patches/api/0355-Configurable-sculk-sensor-listener-range.patch
Jake Potrebic 5730a94208
Updated Upstream (Bukkit/CraftBukkit) (#8991)
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:
2b4582fb SPIGOT-5916: getLastColors does not work with the rgb colors

CraftBukkit Changes:
f7707086d SPIGOT-7299: Fix indirect/anvil damage events and minor improvements
2023-03-18 10:05:04 -07:00

31 lines
1.1 KiB
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Jake Potrebic <jake.m.potrebic@gmail.com>
Date: Thu, 19 Aug 2021 18:43:16 -0700
Subject: [PATCH] Configurable sculk sensor listener range
diff --git a/src/main/java/org/bukkit/block/SculkSensor.java b/src/main/java/org/bukkit/block/SculkSensor.java
index 18966117823eda97e37627fe72b3dbc2c67cab7c..95a822613093479821c22c9aeea32b27d3ec2e21 100644
--- a/src/main/java/org/bukkit/block/SculkSensor.java
+++ b/src/main/java/org/bukkit/block/SculkSensor.java
@@ -24,4 +24,19 @@ public interface SculkSensor extends TileState {
* @param lastVibrationFrequency frequency between 0-15.
*/
void setLastVibrationFrequency(int lastVibrationFrequency);
+ // Paper start
+ /**
+ * Gets the range this sensor listens to events at.
+ *
+ * @return the range (defaults to 8)
+ */
+ int getListenerRange();
+
+ /**
+ * Sets the range this sensor will listen to events from.
+ *
+ * @param range the range (must be greater than 0)
+ */
+ void setListenerRange(int range);
+ // Paper end
}