mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-14 21:08:35 +00:00
Removed notifyAdjacent from Extent.setBlock().
Also fixed Extent's incorrect Javadocs.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user