mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-09-18 21:33:01 +00:00
62 lines
2.2 KiB
Diff
62 lines
2.2 KiB
Diff
From 8db9a5dce6315859736322f832ae117aff02d8ad Mon Sep 17 00:00:00 2001
|
|
From: drXor <mcyoungsota@gmail.com>
|
|
Date: Sun, 23 Feb 2014 16:16:29 -0400
|
|
Subject: [PATCH] Silenceable Lightning API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
|
|
index e3897aab..6e7d5545 100644
|
|
--- a/src/main/java/org/bukkit/World.java
|
|
+++ b/src/main/java/org/bukkit/World.java
|
|
@@ -2738,6 +2738,29 @@ public interface World extends RegionAccessor, WorldInfo, PluginMessageRecipient
|
|
// Spigot start
|
|
public class Spigot {
|
|
|
|
+ /**
|
|
+ * Strikes lightning at the given {@link Location} and possibly without sound
|
|
+ *
|
|
+ * @param loc The location to strike lightning
|
|
+ * @param isSilent Whether this strike makes no sound
|
|
+ * @return The lightning entity.
|
|
+ */
|
|
+ @NotNull
|
|
+ public LightningStrike strikeLightning(@NotNull Location loc, boolean isSilent) {
|
|
+ throw new UnsupportedOperationException("Not supported yet.");
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Strikes lightning at the given {@link Location} without doing damage and possibly without sound
|
|
+ *
|
|
+ * @param loc The location to strike lightning
|
|
+ * @param isSilent Whether this strike makes no sound
|
|
+ * @return The lightning entity.
|
|
+ */
|
|
+ @NotNull
|
|
+ public LightningStrike strikeLightningEffect(@NotNull Location loc, boolean isSilent) {
|
|
+ throw new UnsupportedOperationException("Not supported yet.");
|
|
+ }
|
|
}
|
|
|
|
@NotNull
|
|
diff --git a/src/main/java/org/bukkit/entity/LightningStrike.java b/src/main/java/org/bukkit/entity/LightningStrike.java
|
|
index d913298e..c49628f2 100644
|
|
--- a/src/main/java/org/bukkit/entity/LightningStrike.java
|
|
+++ b/src/main/java/org/bukkit/entity/LightningStrike.java
|
|
@@ -86,6 +86,14 @@ public interface LightningStrike extends Entity {
|
|
// Spigot start
|
|
public class Spigot extends Entity.Spigot {
|
|
|
|
+ /*
|
|
+ * Returns whether the strike is silent.
|
|
+ *
|
|
+ * @return whether the strike is silent.
|
|
+ */
|
|
+ public boolean isSilent() {
|
|
+ throw new UnsupportedOperationException("Not supported yet.");
|
|
+ }
|
|
}
|
|
|
|
@NotNull
|
|
--
|
|
2.43.0
|
|
|