Fixed a few clipboard related issues.

This commit is contained in:
Matthew Miller
2018-07-30 21:55:53 +10:00
parent db21f51a18
commit 521238b4eb
8 changed files with 24 additions and 28 deletions

View File

@ -305,7 +305,7 @@ public class ForgeWorld extends AbstractWorld {
ForgeWorld from = new ForgeWorld(freshWorld);
try {
for (BlockVector vec : region) {
editSession.setBlock(vec, from.getBlock(vec));
editSession.setBlock(vec, from.getFullBlock(vec));
}
} catch (MaxChangedBlocksException e) {
throw new RuntimeException(e);