Users shouldn't "leave" when they enter an incorrect password anymore. Just as soon as someone reimplements the OnLeave hook.

This commit is contained in:
Lucas Nicodemus 2012-01-01 18:46:06 -07:00
parent 62bc28332a
commit 4b77ca549e
5 changed files with 17 additions and 3 deletions

View file

@ -408,6 +408,15 @@ namespace TShockAPI
Log.ConsoleInfo(string.Format("{0} was force kicked for : {1}", player.IP, reason));
}
public void ForceKick(TSPlayer player, string reason, bool silent)
{
player.SilentKickInProgress = true;
if (!player.ConnectionAlive)
return;
player.Disconnect(reason);
Log.ConsoleInfo(string.Format("{0} was force kicked for : {1}", player.IP, reason));
}
/// <summary>
/// Kicks a player from the server.
/// </summary>