From a2933e030a96554a6bc3e62e42700c0de6b02ac7 Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 27 Jan 2020 15:43:17 -0500 Subject: [PATCH] More severe votekick --- core/src/mindustry/core/NetServer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/core/NetServer.java b/core/src/mindustry/core/NetServer.java index 3f7e0d02ee..2faf856171 100644 --- a/core/src/mindustry/core/NetServer.java +++ b/core/src/mindustry/core/NetServer.java @@ -284,11 +284,11 @@ public class NetServer implements ApplicationListener{ }); //duration of a a kick in seconds - int kickDuration = 20 * 60; + int kickDuration = 60 * 60; //voting round duration in seconds float voteDuration = 0.5f * 60; //cooldown between votes - int voteCooldown = 60 * 2; + int voteCooldown = 60 * 1; class VoteSession{ Player target;