Fix 'lately known as' showing to players on maps that have map-only chat on.

This commit is contained in:
UnknownShadow200 2018-04-07 09:16:23 +10:00
parent 67916054f7
commit 76f5192d16

View File

@ -254,7 +254,8 @@ namespace MCGalaxy {
LevelPermission rank = CommandExtraPerms.MinPerm("opchat", LevelPermission.Operator);
string altsMsg = p.ColoredName + " %Sis lately known as: " + alts.Join();
Chat.MessageWhere(altsMsg, pl => pl.Rank >= rank && Entities.CanSee(pl, p));
Chat.MessageWhere(altsMsg,
pl => pl.Rank >= rank && Entities.CanSee(pl, p) && pl.level.SeesServerWideChat);
//IRCBot.Say(temp, true); //Tells people in op channel on IRC
Logger.Log(LogType.UserActivity, altsMsg);
}