Add Optional Tick Shuffling

This prevents players from 'gaming' the server, and strategically relogging to increase their position in the tick order.

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2014-01-27 08:39:26 +11:00
parent 23c02d0942
commit b26b6dadb0
2 changed files with 20 additions and 0 deletions

View File

@@ -278,4 +278,10 @@ public class SpigotConfig
SpigotConfig.playerSample = SpigotConfig.getInt( "settings.sample-count", 12 );
System.out.println( "Server Ping Player Sample Count: " + SpigotConfig.playerSample );
}
public static int playerShuffle;
private static void playerShuffle()
{
SpigotConfig.playerShuffle = SpigotConfig.getInt( "settings.player-shuffle", 0 );
}
}