mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
26 lines
916 B
Diff
26 lines
916 B
Diff
From f63d437c04b5a57accd831c20410554f6bc534af Mon Sep 17 00:00:00 2001
|
|
From: Byteflux <byte@byteflux.net>
|
|
Date: Fri, 17 Apr 2015 02:43:00 -0700
|
|
Subject: [PATCH] Add FallingBlock source location API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/FallingBlock.java b/src/main/java/org/bukkit/entity/FallingBlock.java
|
|
index 1edd6e0..93b17e3 100644
|
|
--- a/src/main/java/org/bukkit/entity/FallingBlock.java
|
|
+++ b/src/main/java/org/bukkit/entity/FallingBlock.java
|
|
@@ -45,4 +45,11 @@ public interface FallingBlock extends Entity {
|
|
* @param drop true to break into an item when obstructed
|
|
*/
|
|
void setDropItem(boolean drop);
|
|
+
|
|
+ /**
|
|
+ * Gets the source block location of the falling block
|
|
+ *
|
|
+ * @return the source block location the falling block was spawned from
|
|
+ */
|
|
+ org.bukkit.Location getSourceLoc(); // PaperSpigot - Add FallingBlock source location API
|
|
}
|
|
--
|
|
1.9.4.msysgit.2
|
|
|