mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-04 11:56:07 +00:00
Fixed BlockBagExtent using getBlockType/Data()
This commit is contained in:
parent
dbf1f3b9cb
commit
302e493538
@ -87,10 +87,11 @@ public class BlockBagExtent extends ExtentDelegate {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setBlock(Vector location, BaseBlock block) throws WorldEditException {
|
||||
public boolean setBlock(Vector position, BaseBlock block) throws WorldEditException {
|
||||
if (blockBag != null) {
|
||||
BaseBlock lazyBlock = getExtent().getLazyBlock(position);
|
||||
int existing = lazyBlock.getType();
|
||||
final int type = block.getType();
|
||||
final int existing = world.getBlockType(location);
|
||||
|
||||
if (type > 0) {
|
||||
try {
|
||||
@ -109,12 +110,12 @@ public class BlockBagExtent extends ExtentDelegate {
|
||||
|
||||
if (existing > 0) {
|
||||
try {
|
||||
blockBag.storeDroppedBlock(existing, world.getBlockData(location));
|
||||
blockBag.storeDroppedBlock(existing, lazyBlock.getData());
|
||||
} catch (BlockBagException ignored) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return super.setBlock(location, block);
|
||||
return super.setBlock(position, block);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user