iutils: add delay to chooseNumber() after sending enter key

This commit is contained in:
illumineawake 2021-08-06 09:17:09 +10:00
parent 17fef7692e
commit 38c2401f0b
4 changed files with 3 additions and 2 deletions

View File

@ -23,7 +23,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
version = "4.3.3"
version = "4.3.4"
project.extra["PluginName"] = "iUtils"
project.extra["PluginDescription"] = "Illumine - Utils required for plugins to function with added automation"

View File

@ -348,6 +348,7 @@ public class Game {
keyboard.typeString(String.valueOf(number));
sleep(calc.getRandomIntBetweenRange(80, 250));
keyboard.pressKey(VK_ENTER);
tick();
}
public void chooseString(String text) {

File diff suppressed because one or more lines are too long