Fixed getting and setting of blocks in unloaded chunks

This commit is contained in:
zml2008
2011-08-29 17:31:08 -07:00
parent 02d8acfa81
commit bc6315fb24
3 changed files with 18 additions and 0 deletions

View File

@ -162,6 +162,8 @@ public class EditSession {
return false;
}
world.checkLoadedChuck(pt);
// No invalid blocks
if (!world.isValidBlockType(type)) {
return false;
@ -414,6 +416,8 @@ public class EditSession {
* @return BaseBlock
*/
public BaseBlock rawGetBlock(Vector pt) {
world.checkLoadedChuck(pt);
int type = world.getBlockType(pt);
int data = world.getBlockData(pt);