3738394041424344
@Override public Selection getSelection(EntityPlayerMP player) { Point[] points = getPoints(player); if (points != null) return new Selection(points[0], points[1]); return null; }
63646566676869
PlayerInfo pi = PlayerInfo.getPlayerInfo(player); if (pi.sel1 == null || pi.sel2 == null) { return null; } return new Selection(pi.sel1, pi.sel2); }