public static bool Mute(User user) { if (_user.GetUserById(user.Userid) == null) { return(false); } _user.MuteUser(user.Userid, 0); return(true); }