mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 17:57:38 +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
|
@Override
|
||||||
public boolean setBlock(Vector location, BaseBlock block) throws WorldEditException {
|
public boolean setBlock(Vector position, BaseBlock block) throws WorldEditException {
|
||||||
if (blockBag != null) {
|
if (blockBag != null) {
|
||||||
|
BaseBlock lazyBlock = getExtent().getLazyBlock(position);
|
||||||
|
int existing = lazyBlock.getType();
|
||||||
final int type = block.getType();
|
final int type = block.getType();
|
||||||
final int existing = world.getBlockType(location);
|
|
||||||
|
|
||||||
if (type > 0) {
|
if (type > 0) {
|
||||||
try {
|
try {
|
||||||
@ -109,12 +110,12 @@ public class BlockBagExtent extends ExtentDelegate {
|
|||||||
|
|
||||||
if (existing > 0) {
|
if (existing > 0) {
|
||||||
try {
|
try {
|
||||||
blockBag.storeDroppedBlock(existing, world.getBlockData(location));
|
blockBag.storeDroppedBlock(existing, lazyBlock.getData());
|
||||||
} catch (BlockBagException ignored) {
|
} catch (BlockBagException ignored) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return super.setBlock(location, block);
|
return super.setBlock(position, block);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user