ChannelMessage

- Implemented `setMessage(string data)`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-20 20:09:47 +02:00
parent 9d010247f5
commit ead47834fb
1 changed files with 5 additions and 0 deletions

View File

@ -80,6 +80,11 @@ public final class ChannelMessage : Command
registerClass!(typeof(this));
}
public void setMessage(string data)
{
this.data = data;
}
public void setTo(string[] to)
{
foreach(string curTo; to)