mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-10 15:21:56 +00:00
Fixed logial flaw that made gathers reset on to few votes
This commit is contained in:
parent
73a4a967f5
commit
dc485dc9b6
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ function Gather (options) {
|
||||||
this.cooldown = {};
|
this.cooldown = {};
|
||||||
this.COOLDOWN_TIME = 60 * 3;// 3 Minutes
|
this.COOLDOWN_TIME = 60 * 3;// 3 Minutes
|
||||||
|
|
||||||
this.REGATHER_THRESHOLD = Math.floor(this.teamSize / 2) + 2;
|
this.REGATHER_THRESHOLD = this.teamSize + 2;
|
||||||
|
|
||||||
this.type = options.type || "classic";
|
this.type = options.type || "classic";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue