Removed notifyAdjacent from Extent.setBlock().

Also fixed Extent's incorrect Javadocs.
This commit is contained in:
sk89q
2014-03-31 17:20:54 -07:00
parent e7fe787b20
commit fe25d08267
18 changed files with 69 additions and 73 deletions

View File

@ -526,8 +526,8 @@ public abstract class LocalWorld implements World, Extent {
}
@Override
public boolean setBlock(Vector pt, BaseBlock block, boolean notifyAdjacent) {
return setBlock(pt, (Block) block, notifyAdjacent);
public boolean setBlock(Vector pt, BaseBlock block) {
return setBlock(pt, block, true);
}
@Override