Fixed checkCanCollectEssence method

This commit is contained in:
Infinitay
2018-03-25 20:34:39 -04:00
parent 28bb91bcaa
commit c369113f28

View File

@@ -139,7 +139,7 @@ public class DailyTasksPlugin extends Plugin
private boolean checkCanCollectEssence()
{
int value = client.getSetting(Varbits.DAILY_ESSENCE);
return value < 0; // 1 = can't claim
return value == 0; // 1 = can't claim
}
private void cacheColors()