Fix block setting while not in fast mode

This commit is contained in:
wizjany
2013-03-17 21:38:02 -04:00
parent be320f60e1
commit 1af61f827b
2 changed files with 5 additions and 9 deletions

View File

@ -234,7 +234,7 @@ public class EditSession {
result = world.setBlockType(pt, 0);
}
} else {
result = world.setBlock(pt, block, fastMode);
result = world.setBlock(pt, block, !fastMode);
}
return result;