YARTF (yet another ray trace fix) (#1228)

This commit is contained in:
Nicholas Ignoffo 2018-02-17 15:07:54 -08:00
parent 441e7b8952
commit 41baaaf28e

View file

@ -81,7 +81,7 @@ public abstract class HUDElementCornerTile<T extends TileEntity> extends HUDElem
}
RayTraceResult trace = Minecraft.getMinecraft().objectMouseOver;
if (trace.typeOfHit != RayTraceResult.Type.BLOCK)
if (trace == null || trace.typeOfHit != RayTraceResult.Type.BLOCK)
return false;
TileEntity tile = Minecraft.getMinecraft().world.getTileEntity(Minecraft.getMinecraft().objectMouseOver.getBlockPos());