mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Closes #1244
This commit is contained in:
parent
673b4bf52a
commit
f18f148ff3
1 changed files with 3 additions and 1 deletions
|
@ -191,7 +191,9 @@ public class MethodHandler implements IMethodHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
//Converting the Items
|
//Converting the Items
|
||||||
List<EntityItem> items = tile.getWorldObject().getEntitiesWithinAABB(EntityItem.class, new AxisAlignedBB(hitBlock.getX() - rangeX, hitBlock.getY() - rangeY, hitBlock.getZ() - rangeZ, hitBlock.getX() + 1 + rangeX, hitBlock.getY() + 1 + rangeY, hitBlock.getZ() + 1 + rangeZ));
|
AxisAlignedBB aabb = new AxisAlignedBB(tile.getPosition().getX(), tile.getPosition().getY(), tile.getPosition().getZ(), hitBlock.getX() + 1, hitBlock.getY() + 1, hitBlock.getZ() + 1);
|
||||||
|
aabb.grow(0.02, 0.02, 0.02);
|
||||||
|
List<EntityItem> items = tile.getWorldObject().getEntitiesWithinAABB(EntityItem.class, aabb);
|
||||||
for (EntityItem item : items) {
|
for (EntityItem item : items) {
|
||||||
ItemStack stack = item.getItem();
|
ItemStack stack = item.getItem();
|
||||||
if (!item.isDead && StackUtil.isValid(stack)) {
|
if (!item.isDead && StackUtil.isValid(stack)) {
|
||||||
|
|
Loading…
Reference in a new issue