PalworldRcon
PalworldRcon copied to clipboard
[Issue]: Notice with RCON Command send message without space and tries to put underline in each space
public async void SendNotice(string notice)
{
if(string.IsNullOrWhiteSpace(notice) || Status != ClientStatus.Connected) return;
notice = notice.Replace(" ", "_");
await SendAsync($"Broadcast {notice}");
}