feat(commands): channel required to send to command part

This commit is contained in:
Raphael 2025-05-20 23:50:22 +02:00
parent c7d826e738
commit 1f96596130
2 changed files with 15 additions and 7 deletions

View file

@ -86,7 +86,7 @@ class Channel {
' ====================================
package "CommandDispatcher" <<namespace>> {
class CommandDispatcher {
+ dispatchCommand(user : User, line : string) : void
+ dispatchCommand(user : *User, channel : *channel, line : string) : void
+ splitCommand(line : string) : vector<string>
}
}