Commits
md_5 authored ee68fbfb8ef
27 27 | * Gets the world containing this chunk |
28 28 | * |
29 29 | * @return Parent World |
30 30 | */ |
31 31 | World getWorld(); |
32 32 | |
33 33 | /** |
34 34 | * Gets a block from this chunk |
35 35 | * |
36 36 | * @param x 0-15 |
37 - | * @param y 0-127 |
37 + | * @param y 0-255 |
38 38 | * @param z 0-15 |
39 39 | * @return the Block |
40 40 | */ |
41 41 | Block getBlock(int x, int y, int z); |
42 42 | |
43 43 | /** |
44 44 | * Capture thread-safe read-only snapshot of chunk data |
45 45 | * |
46 46 | * @return ChunkSnapshot |
47 47 | */ |