Auto ban users that have been vote kicked. Define the auto ban time in the server settings. (Issue #128) NOTE: Not tested!

This commit is contained in:
itchyOwl
2018-03-27 11:27:13 +03:00
parent 3106efa023
commit a48a4975ca
3 changed files with 10 additions and 0 deletions
@@ -1934,6 +1934,7 @@ namespace Barotrauma.Networking
{
SendChatMessage(c.Name + " has been kicked from the server.", ChatMessageType.Server, null);
KickClient(c, "Kicked by vote");
BanClient(c, "Kicked by vote (auto ban)", duration: TimeSpan.FromSeconds(AutoBanTime));
}
GameMain.NetLobbyScreen.LastUpdateID++;