Fix exception when getting rendering box for tile entities with no collision boxes. (#7301)

This commit is contained in:
malte0811 2020-09-10 20:02:06 +02:00 committed by GitHub
parent 9f3141ea16
commit dbcf8bd075
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -28,6 +28,7 @@ import net.minecraft.nbt.CompoundNBT;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.shapes.VoxelShape;
import net.minecraft.world.World;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@ -139,7 +140,11 @@ public interface IForgeTileEntity extends ICapabilitySerializable<CompoundNBT>
AxisAlignedBB cbb = null;
try
{
cbb = state.getCollisionShape(getTileEntity().getWorld(), pos).getBoundingBox().offset(pos);
VoxelShape collisionShape = state.getCollisionShape(getTileEntity().getWorld(), pos);
if (!collisionShape.isEmpty())
{
cbb = collisionShape.getBoundingBox().offset(pos);
}
}
catch (Exception e)
{