Loads the data for a chunk synchronously @param world The world the data is in @param cx The chunk X of the chunk the data is in @param cz The chunk Z of the chunk the data is in
(World world, int cx, int cz)
| 248 | * @param cz The chunk Z of the chunk the data is in |
| 249 | */ |
| 250 | public void load(World world, int cx, int cz) { |
| 251 | unwrap(loadAsync(world, cx, cz)); |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * Unloads the data for a chunk asynchronously |
no test coverage detected