Pandemic 2853 Posted August 30, 2017 Hello everyone, I'm glad to announce our latest client version. Make sure you have the latest version of the launcher (you can get it here). Changes: Changed GameObjects#getInteractableFrom to fix a motherlode mine issue Various performance improvements Thanks everyone, The Dream Team
Dorkinator 64 Posted August 30, 2017 no bank item finding bug fix??That's a bug in other clients too, here's a work around. Item target = null; Filter<Item> filter = partial ? partial(name) : exact(name); Timer timeout = new Timer(r.nextInt(3000)+1000); while(!timeout.finished() && target == null) { List<Item> bankContents = all(); for (Item i : bankContents) { if (filter.match(i)) { target = i; } } }
Recommended Posts
Archived
This topic is now archived and is closed to further replies.