PalworldRcon icon indicating copy to clipboard operation
PalworldRcon copied to clipboard

[Issue]: Notice with RCON Command send message without space and tries to put underline in each space

Open moonshadowrev opened this issue 7 months ago • 1 comments

image

public async void SendNotice(string notice)
    {
        if(string.IsNullOrWhiteSpace(notice) || Status != ClientStatus.Connected) return;

        notice = notice.Replace(" ", "_");

        await SendAsync($"Broadcast {notice}");
    }

moonshadowrev avatar Jul 23 '24 17:07 moonshadowrev