ForEach is better way to Dropping items?
Actually I'm using a code like this below and the bot stills undropping some items.
for (SpriteItem x : Inventory.getItems()){
if (x != null){
if (x.interact("Drop")){
Execution.delayUntil(() -> !x.isValid(), 1200);
}...