Make ban command properly give a ban message instead of a placeholder (#5087)

This commit is contained in:
Saphire Lattice
2021-10-30 01:54:14 +07:00
committed by GitHub
parent 1ee833be6e
commit 1d136bf18b
3 changed files with 17 additions and 13 deletions

View File

@@ -103,13 +103,13 @@ namespace Content.Server.Administration.Commands
response.Append(expires == null ?
" permanently."
: $" until {expires.ToString()}");
: $" until {expires}");
shell.WriteLine(response.ToString());
if (plyMgr.TryGetSessionById(targetUid, out var targetPlayer))
{
targetPlayer.ConnectedClient.Disconnect("You've been banned. Tough shit.");
targetPlayer.ConnectedClient.Disconnect(banDef.DisconnectMessage);
}
}
}