Moon Shadow
Results
2
issues of
Moon Shadow
 ```cs public async void SendNotice(string notice) { if(string.IsNullOrWhiteSpace(notice) || Status != ClientStatus.Connected) return; notice = notice.Replace(" ", "_"); await SendAsync($"Broadcast {notice}"); } ```
