summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main/java/org/bukkit/World.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
index f18dff83..ecfdecaa 100644
--- a/src/main/java/org/bukkit/World.java
+++ b/src/main/java/org/bukkit/World.java
@@ -254,7 +254,11 @@ public interface World extends PluginMessageRecipient, Metadatable {
* @param x X-coordinate of the chunk
* @param z Z-coordinate of the chunk
* @return Whether the chunk was actually regenerated
+ *
+ * @deprecated regenerating a single chunk is not guaranteed to produce the
+ * same chunk as before as terrain decoration may be spread across chunks
*/
+ @Deprecated
public boolean regenerateChunk(int x, int z);
/**