summaryrefslogtreecommitdiff
path: root/mcmap/chunk.go
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-09-21 00:50:33 +0200
committerKevin Chabowski <kevin@kch42.de>2013-09-21 00:50:33 +0200
commitb94000e63e9d8753249754f91027d315bdbe5ebe (patch)
tree20fa972b1346c1aafbcd5ce5511179e9e1b1a696 /mcmap/chunk.go
parentf051ce2392bc0bfae52945e8f53fe38f2d095637 (diff)
downloadgomcmap-b94000e63e9d8753249754f91027d315bdbe5ebe.tar.gz
gomcmap-b94000e63e9d8753249754f91027d315bdbe5ebe.tar.bz2
gomcmap-b94000e63e9d8753249754f91027d315bdbe5ebe.zip
Added/improved some documentation.
Diffstat (limited to 'mcmap/chunk.go')
-rw-r--r--mcmap/chunk.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcmap/chunk.go b/mcmap/chunk.go
index dfac5a7..1f7f5e1 100644
--- a/mcmap/chunk.go
+++ b/mcmap/chunk.go
@@ -127,7 +127,7 @@ func (c *Chunk) Biome(x, z int) Biome { return c.biomes[z*ChunkSizeXZ+x] }
// SetBiome sets the biome at x,z.
func (c *Chunk) SetBiome(x, z int, bio Biome) { c.biomes[z*ChunkSizeXZ+x] = bio }
-// MarkUnused marks the chunk as unused. If all chunks of a superchunk are marked as unused, the superchunk will be unloaded and saved (if needed).
+// MarkUnused marks the chunk as unused. If all chunks of a superchunk are marked as unused, the underlying superchunk will be unloaded and saved (if needed).
//
// You must not use the chunk any longer, after you called this function.
//