summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/generator
diff options
context:
space:
mode:
authorDinnerbone <dinnerbone@dinnerbone.com>2011-06-16 20:34:12 +0100
committerDinnerbone <dinnerbone@dinnerbone.com>2011-06-16 20:34:12 +0100
commitdc7b4b8374880173ae55e7a483f2a7ab06115d8d (patch)
tree90e2b193daea7acbd413b5c6501ab7959fe6f79c /src/main/java/org/bukkit/generator
parent04494c5b07e43eba6f7974d81a59897c1d65d46b (diff)
downloadbukkit-dc7b4b8374880173ae55e7a483f2a7ab06115d8d.tar
bukkit-dc7b4b8374880173ae55e7a483f2a7ab06115d8d.tar.gz
bukkit-dc7b4b8374880173ae55e7a483f2a7ab06115d8d.tar.lz
bukkit-dc7b4b8374880173ae55e7a483f2a7ab06115d8d.tar.xz
bukkit-dc7b4b8374880173ae55e7a483f2a7ab06115d8d.zip
Javadoc fix for BlockPopulator.java explaining which chunks exist and which don't
Diffstat (limited to 'src/main/java/org/bukkit/generator')
-rw-r--r--src/main/java/org/bukkit/generator/BlockPopulator.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/java/org/bukkit/generator/BlockPopulator.java b/src/main/java/org/bukkit/generator/BlockPopulator.java
index a2e12ea3..ce303683 100644
--- a/src/main/java/org/bukkit/generator/BlockPopulator.java
+++ b/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