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

@@ -73,17 +73,7 @@ The ban reason is: ""{ban.Reason}""
var ban = await _db.GetServerBanAsync(addr, userId, hwId);
if (ban != null)
{
var expires = "This is a permanent ban.";
if (ban.ExpirationTime is { } expireTime)
{
var duration = expireTime - ban.BanTime;
var utc = expireTime.ToUniversalTime();
expires = $"This ban is for {duration.TotalMinutes:N0} minutes and will expire at {utc:f} UTC.";
}
var reason = $@"You, or another user of this computer or connection, are banned from playing here.
The ban reason is: ""{ban.Reason}""
{expires}";
e.Deny(reason);
e.Deny(ban.DisconnectMessage);
return;
}