mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
Implement regenerateChunk
This commit is contained in:
parent
23d50f8134
commit
e15a23c391
1 changed files with 2 additions and 2 deletions
|
@ -405,8 +405,8 @@ public interface World extends RegionAccessor, WorldInfo, PluginMessageRecipient
|
||||||
* @return Whether the chunk was actually regenerated
|
* @return Whether the chunk was actually regenerated
|
||||||
*
|
*
|
||||||
* @deprecated regenerating a single chunk is not likely to produce the same
|
* @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
|
* chunk as before as terrain decoration may be spread across chunks. It may
|
||||||
* this method should be avoided as it is known to produce buggy results.
|
* or may not change blocks in the adjacent chunks as well.
|
||||||
*/
|
*/
|
||||||
@Deprecated(since = "1.13")
|
@Deprecated(since = "1.13")
|
||||||
public boolean regenerateChunk(int x, int z);
|
public boolean regenerateChunk(int x, int z);
|
||||||
|
|
Loading…
Reference in a new issue