mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 12:13:54 -07:00
Configurable sculk sensor listener range (#6443)
This commit is contained in:
30
patches/api/Configurable-sculk-sensor-listener-range.patch
Normal file
30
patches/api/Configurable-sculk-sensor-listener-range.patch
Normal file
@@ -0,0 +1,30 @@
|
||||
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 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/block/SculkSensor.java
|
||||
+++ b/src/main/java/org/bukkit/block/SculkSensor.java
|
||||
@@ -0,0 +0,0 @@ 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
|
||||
}
|
Reference in New Issue
Block a user