slightly reduced cooldown between votekick (#1056)

This commit is contained in:
Arkanic 2019-11-19 14:08:56 +13:00 committed by Anuken
parent 39939f8a51
commit 9bfaecf760

View File

@ -292,7 +292,7 @@ public class NetServer implements ApplicationListener{
}
//cooldown between votes
int voteTime = 60 * 5;
int voteTime = 60 * 3;
Timekeeper vtime = new Timekeeper(voteTime);
//current kick sessions
VoteSession[] currentlyKicking = {null};