various minor

Increase target size
remove unnecessary brush sync
send chunk on biome change
This commit is contained in:
Jesse Boyd
2019-11-17 20:29:25 +00:00
parent 3f92f12e89
commit 329df8d33b
3 changed files with 3 additions and 8 deletions

View File

@ -482,12 +482,7 @@ public class BrushTool implements DoubleActionTraceTool, ScrollTool, MovableTool
Mask mask = traceMask == null ? new SolidBlockMask(editSession) : traceMask;
new MaskTraverser(mask).reset(editSession);
MaskedTargetBlock tb = new MaskedTargetBlock(mask, player, range, 0.2);
return TaskManager.IMP.sync(new RunnableVal<Vector3>() {
@Override
public void run(Vector3 value) {
this.value = tb.getMaskedTargetBlock(useLastBlock);
}
});
return tb.getMaskedTargetBlock(useLastBlock);
}
public boolean act(BrushAction action, Player player, LocalSession session) {