Bryno 21 Posted September 20, 2021 I'm sure I am missing something small here... I have an ArrayList<Integer> with rock id's to mine. Then I'm doing: List<GameObject> go = GameObjects.all((Integer[]) rocks.toArray()); GameObject g = GameObjects.closest(go, m.getLocalPlayer().getTile()); but of course it's mad because closests() wants Filter<GameObject> and not my List<GameObject> just not sure how to get this job done If anyone can help, let me know please! Thanks.
Bryno 21 Author Posted September 20, 2021 Sorry.... Yup I knew I was trolling my self lmfao Here is final code: GameObject g = GameObjects.closest((Integer[]) rocks.toArray());
Recommended Posts
Archived
This topic is now archived and is closed to further replies.