diff --git a/server/multiplayer/ServerTossupRoom.js b/server/multiplayer/ServerTossupRoom.js index bd1a104b..401a502e 100644 --- a/server/multiplayer/ServerTossupRoom.js +++ b/server/multiplayer/ServerTossupRoom.js @@ -292,7 +292,7 @@ export default class ServerTossupRoom extends TossupRoom { } }); - const threshold = Math.max(activePlayers - 2, 2); + const threshold = Math.max(Math.floor(activePlayers * 3 / 4), 2); const votekick = new Votekick(targetId, threshold, []); votekick.vote(userId); if (votekick.check()) {