Allow session timeout = 0 (with warnings)

This commit is contained in:
Gabriele C 2015-07-28 00:04:16 +02:00
parent ba06bb514a
commit 5388f08117
2 changed files with 18 additions and 12 deletions

View File

@ -252,6 +252,10 @@ public class AuthMe extends JavaPlugin {
ConsoleLogger.showError("WARNING!!! By disabling ForceSingleSession, your server protection is inadequate!");
}
if (Settings.getSessionTimeout == 0 && Settings.isSessionsEnabled){
ConsoleLogger.showError("WARNING!!! You set session timeout to 0, this may cause security issues!");
}
if (Settings.reloadSupport)
try {
int playersOnline = 0;

View File

@ -78,6 +78,7 @@ public class AsyncronousQuit {
LimboCache.getInstance().deleteLimboPlayer(name);
}
if (Settings.isSessionsEnabled && !isKick) {
if (Settings.getSessionTimeout != 0){
BukkitTask task = plugin.getServer().getScheduler().runTaskLaterAsynchronously(plugin, new Runnable() {
@Override
@ -90,6 +91,7 @@ public class AsyncronousQuit {
}, Settings.getSessionTimeout * 20 * 60);
plugin.sessions.put(name, task);
}
} else {
PlayerCache.getInstance().removePlayer(name);
database.setUnlogged(name);