ChannelMessage

- `setTo(string[] to)` now uses `setTo(string)`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-20 20:09:21 +02:00
parent 4002854c50
commit 9d010247f5
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ public final class ChannelMessage : Command
{
foreach(string curTo; to)
{
this.to ~= curTo;
setTo(curTo);
}
}