aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-API-Patches/0111-Expand-Explosions-API.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Spigot-API-Patches/0111-Expand-Explosions-API.patch')
-rw-r--r--Spigot-API-Patches/0111-Expand-Explosions-API.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/Spigot-API-Patches/0111-Expand-Explosions-API.patch b/Spigot-API-Patches/0111-Expand-Explosions-API.patch
index 0b5880cfd7..8ddb1de1af 100644
--- a/Spigot-API-Patches/0111-Expand-Explosions-API.patch
+++ b/Spigot-API-Patches/0111-Expand-Explosions-API.patch
@@ -99,7 +99,7 @@ index 4cf22afc3c1f1cc19b6e5350043431215908a612..ac3c8eef58872c2de840a4b7ba7d77c2
+ * @return false if explosion was canceled, otherwise true
+ */
+ public boolean createExplosion(@NotNull Entity source, float power, boolean setFire, boolean breakBlocks) {
-+ return this.getWorld().createExplosion(source, source.getLocation(), power, setFire, breakBlocks);
++ return this.getWorld().createExplosion(source, this, power, setFire, breakBlocks);
+ }
+
/**