Allow admins to choose either or both IP or name bans to enforce

This commit is contained in:
Deathmax 2011-12-18 20:36:03 +08:00
parent d091f5b52d
commit b497183423
2 changed files with 14 additions and 1 deletions

View file

@ -516,7 +516,14 @@ namespace TShockAPI
return;
}
var ban = Bans.GetBanByIp(player.IP);
var ipban = Bans.GetBanByIp(player.IP);
var nameban = Bans.GetBanByName(player.Name);
Ban ban = null;
if (ipban != null && Config.EnableIPBans)
ban = ipban;
else if (nameban != null && Config.EnableIPBans)
ban = nameban;
if (ban != null)
{
TShock.Utils.ForceKick(player, string.Format("You are banned: {0}", ban.Reason));