Reduce cooldown to 3 minutes

This commit is contained in:
Chris Blanchard 2015-09-29 11:43:17 +01:00
parent 9d8547234d
commit d34132d84b

View file

@ -32,7 +32,7 @@ function Gather (options) {
// Store cooldown times for gather leaves
this.cooldown = {};
this.COOLDOWN_TIME = 60 * 5;// 5 Minutes
this.COOLDOWN_TIME = 60 * 3;// 3 Minutes
this.REGATHER_THRESHOLD = 8;