- Thread Author
- #1
I'm having an issue with menu interactions in my code and can't seem to figure it out. For example, banking often gets stuck on right clicking the banker, but not clicking 'bank'. I've added delays to try and help this but it's still happening. Hopefully someone knows a solution! Here's the lines of my code in case it helps:
Bank.open();
Execution.delayUntil(() -> Bank.isOpen(), 1000, 2000);
It also doesn't seem to matter how long I make my timeouts...
Bank.open();
Execution.delayUntil(() -> Bank.isOpen(), 1000, 2000);
It also doesn't seem to matter how long I make my timeouts...