Added sphere brush tool.

This commit is contained in:
sk89q
2011-01-09 11:14:55 -08:00
parent 0bbc4da594
commit 010a1c84fd
7 changed files with 243 additions and 29 deletions

View File

@@ -53,7 +53,7 @@ public class EditSession {
/**
* World.
*/
private LocalWorld world;
protected LocalWorld world;
/**
* Stores the original blocks before modification.
@@ -141,7 +141,7 @@ public class EditSession {
* @param blockType
* @return Whether the block changed
*/
private boolean rawSetBlock(Vector pt, BaseBlock block) {
protected boolean rawSetBlock(Vector pt, BaseBlock block) {
int y = pt.getBlockY();
if (y < 0 || y > 127) {