commanding-pipeline diff

This commit is contained in:
Jesse Boyd
2019-10-23 05:23:52 +01:00
parent fb91456bdd
commit 2080e9786b
193 changed files with 5449 additions and 3491 deletions

View File

@ -80,6 +80,8 @@ public class Naturalizer implements LayerFunction {
}
private boolean naturalize(BlockVector3 position, int depth) throws WorldEditException {
return editSession.setBlock(position, getTargetBlock(depth));
/*
BlockState block = editSession.getBlock(position);
BlockState targetBlock = getTargetBlock(depth);
@ -88,6 +90,7 @@ public class Naturalizer implements LayerFunction {
}
return editSession.setBlock(position, targetBlock);
*/
}
@Override