From ab8184d560ea3b6d0656d200e85397bf2965d39c Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Fri, 16 Aug 2013 16:13:37 +0200 Subject: Fixed a bug in chunk serialisation. The bug set all biome infos to BioOcean(= 0) when serialising the chunk. --- mcmap/prechunk.go | 1 - 1 file changed, 1 deletion(-) (limited to 'mcmap') diff --git a/mcmap/prechunk.go b/mcmap/prechunk.go index ef6ba33..29758c5 100644 --- a/mcmap/prechunk.go +++ b/mcmap/prechunk.go @@ -285,7 +285,6 @@ func (c *Chunk) toPreChunk() (*preChunk, error) { for i, bio := range c.biomes { if bio != BioUncalculated { hasBiomes = true - break } biomes[i] = byte(bio) } -- cgit v1.2.3-54-g00ecf