Merge pull request #1956 from RealIndrit/patch-1

🔥 Get yeeted unused code
This commit is contained in:
Leijurv
2020-08-18 11:14:25 -07:00
committed by GitHub

View File

@ -97,17 +97,4 @@ public interface IPlayerContext {
default boolean isLookingAt(BlockPos pos) { default boolean isLookingAt(BlockPos pos) {
return getSelectedBlock().equals(Optional.of(pos)); return getSelectedBlock().equals(Optional.of(pos));
} }
/**
* Returns the entity that the crosshair is currently placed over. Updated once per tick.
*
* @return The entity
*/
default Optional<Entity> getSelectedEntity() {
RayTraceResult result = objectMouseOver();
if (result != null && result.typeOfHit == RayTraceResult.Type.ENTITY) {
return Optional.of(result.entityHit);
}
return Optional.empty();
}
} }