diff options
author | Kevin Chabowski <kevin@kch42.de> | 2013-08-12 15:20:47 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2013-08-12 15:20:47 +0200 |
commit | bb8ddfbc5574a7682594fd15178083f5308766e7 (patch) | |
tree | 58557589315265f55b9979950629f75f80dcdd08 /mcmap/examples/emeraldfinder | |
parent | 230c827d579d868327f7b0ef31284e1154c80f06 (diff) | |
download | gomcmap-bb8ddfbc5574a7682594fd15178083f5308766e7.tar.gz gomcmap-bb8ddfbc5574a7682594fd15178083f5308766e7.tar.bz2 gomcmap-bb8ddfbc5574a7682594fd15178083f5308766e7.zip |
Getting rid of some magic numbers.
Diffstat (limited to 'mcmap/examples/emeraldfinder')
-rw-r--r-- | mcmap/examples/emeraldfinder/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mcmap/examples/emeraldfinder/main.go b/mcmap/examples/emeraldfinder/main.go index d92ad3c..3249a35 100644 --- a/mcmap/examples/emeraldfinder/main.go +++ b/mcmap/examples/emeraldfinder/main.go @@ -36,9 +36,9 @@ chunkLoop: os.Exit(1) } - for y := 0; y < 256; y++ { - for x := 0; x < 16; x++ { - for z := 0; z < 16; z++ { + for y := 0; y < mcmap.ChunkSizeY; y++ { + for x := 0; x < mcmap.ChunkSizeXZ; x++ { + for z := 0; z < mcmap.ChunkSizeXZ; z++ { blk := chunk.Block(x, y, z) if blk.ID == mcmap.BlkEmeraldOre { absx, absz := mcmap.ChunkToBlock(cx, cz, x, z) |