From 876c4074ba92c7530bcd13dec25fa2bd4684b9d1 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Thu, 16 Jun 2011 20:34:12 +0100 Subject: [PATCH] Javadoc fix for BlockPopulator.java explaining which chunks exist and which don't By: Dinnerbone --- .../src/main/java/org/bukkit/generator/BlockPopulator.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/paper-api/src/main/java/org/bukkit/generator/BlockPopulator.java b/paper-api/src/main/java/org/bukkit/generator/BlockPopulator.java index a2e12ea3e1..ce30368376 100644 --- a/paper-api/src/main/java/org/bukkit/generator/BlockPopulator.java +++ b/paper-api/src/main/java/org/bukkit/generator/BlockPopulator.java @@ -12,7 +12,11 @@ public abstract class BlockPopulator { /** * Populates an area of blocks at or around the given chunk. * - * The chunks directly surrounding the specified chunk must already exist. + * The chunks on each side of the specified chunk must already exist; that is, + * there must be one north, east, south and west of the specified chunk. + * The "corner" chunks may not exist, in which scenario the populator should + * record any changes required for those chunks and perform the changes when + * they are ready. * * @param world The world to generate in * @param random The random generator to use