From 20961faa4d58e8b7f9eca3d98a947fdaf5db63b0 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Thu, 9 Apr 2015 23:22:25 -0400 Subject: [PATCH] Don't try to fight random boss until off global --- bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.js b/bot.js index 73fa11f..dbf0822 100644 --- a/bot.js +++ b/bot.js @@ -58,7 +58,7 @@ function mainLoop() { } //RANDOM BOSS - if(randomBossRefreshing() === true && botFightingRandomBoss === true) { + if(randomBossRefreshing() === true && botFightingRandomBoss === true && botFightingGlobalBoss === false) { botFightingRandomBoss = false; } else if(randomBossRefreshing() === false && botFightingRandomBoss === false) { clickSelector('#randomBossPortal a');