4748495051525354555657
if (ray != null) { Entity pl = ME.world.find(Player.PLAYER); ray.update(e, pl); Vector2f point = ray.line.getEnd(); Vector2f cur = new Vector2f(e.x, e.y); cur = cur.sub(point); cur = cur.normalise(); e.x -= cur.x; e.y -= cur.y; }