mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-04 20:06:06 +00:00
[Bukkit] Added shim method for setBlock(..., foundation.Block, ...).
This commit is contained in:
parent
51a540dab1
commit
63605a8417
@ -1259,4 +1259,13 @@ public class BukkitWorld extends LocalWorld {
|
||||
|
||||
return super.setBlock(pt, block, notifyAdjacent);
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link #setBlock(Vector, BaseBlock, boolean)}
|
||||
*/
|
||||
@Deprecated
|
||||
public boolean setBlock(Vector pt, com.sk89q.worldedit.foundation.Block block, boolean notifyAdjacent) throws WorldEditException {
|
||||
return setBlock(pt, (BaseBlock) block, notifyAdjacent);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user