mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
526795bacd
* Update patches to handle vineflower decompiler * update patches again to handle inlined simple lambdas * update vf again and re-apply/rebuild patches * update patches after removal of verify-merges flag * fix compile issue * remove maven local * fix some issues * address more issues * fix collision patch * use paperweight release * more fixes * update fineflower and fix patches again * add missing comment descriptor --------- Co-authored-by: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
22 lines
1.1 KiB
Diff
22 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Nassim Jahnke <nassim@njahnke.dev>
|
|
Date: Sat, 5 Feb 2022 20:25:28 +0100
|
|
Subject: [PATCH] Implement regenerateChunk
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
|
|
index 5c61b9964e9abe76b5604c73bdd211a9c1c9b619..7ff0ac9c78c3793791afbfa344a9ced3821d9638 100644
|
|
--- a/src/main/java/org/bukkit/World.java
|
|
+++ b/src/main/java/org/bukkit/World.java
|
|
@@ -486,8 +486,8 @@ public interface World extends RegionAccessor, WorldInfo, PluginMessageRecipient
|
|
* @return Whether the chunk was actually regenerated
|
|
*
|
|
* @deprecated regenerating a single chunk is not likely to produce the same
|
|
- * chunk as before as terrain decoration may be spread across chunks. Use of
|
|
- * this method should be avoided as it is known to produce buggy results.
|
|
+ * chunk as before as terrain decoration may be spread across chunks. It may
|
|
+ * or may not change blocks in the adjacent chunks as well.
|
|
*/
|
|
@Deprecated
|
|
public boolean regenerateChunk(int x, int z);
|