This commit is contained in:
aortigos
2026-04-19 01:47:20 +02:00
parent 1c8ad9ba68
commit 94028a5215
7 changed files with 58 additions and 7 deletions

View File

@@ -160,4 +160,6 @@ void Server::parseCommand(int fd, std::string line)
cmd_join(fd, ss);
else if (command == "PRIVMSG")
cmd_privmsg(fd, ss);
else if (command == "PART")
cmd_part(fd, ss);
}