Only control raid if raid target set

This commit is contained in:
Andrew Tomaka 2015-04-09 14:06:34 -04:00
parent 03f7dce1c9
commit 2e3ca91401

12
bot.js
View file

@ -36,11 +36,13 @@ function mainLoop() {
} }
break; break;
case 'Raid': case 'Raid':
if(botRaiding) { if(haveRaidTarget() === true) {
clickButton('Raid!'); if(botRaiding) {
botRaiding = false; clickButton('Raid!');
} else { botRaiding = false;
clickButton('Nevermind'); } else {
clickButton('Nevermind');
}
} }
break; break;
case 'WHOOPS!': case 'WHOOPS!':