// Public method to add user to notifyMe list public void notifyMe(string username) { WebCalls.addNotifyUser(username); usersToNotify.Add(username); if (Common.WhisperClient != null) { Common.WhisperClient.SendWhisper(username, "You will now be notified via a whisper when Burke goes live! burkeEpic To remove yourself from this list, whisper !removeme", Common.DryRun); } }