1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 16:43:21 +02:00
- Added TODO regarding what needs to be done to update the `"PRIVMSG"` sub-handler
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-16 13:58:20 +02:00
parent 8a808cf9f2
commit f120a566a7

View File

@ -609,6 +609,11 @@ public class Client : Thread
if(cmp(command, "PRIVMSG") == 0) if(cmp(command, "PRIVMSG") == 0)
{ {
// TODO: We will need a non kv pair thing as well to see (in the
// ... case of channel messages) the singular pair <channel>
// ... name.
//
// Then our message will be in `getTrailing()`
logger.debug_("PrivMessage parser (kv-pairs): ", ircMessage.getKVPairs()); logger.debug_("PrivMessage parser (kv-pairs): ", ircMessage.getKVPairs());
logger.debug_("PrivMessage parser (trailing): ", ircMessage.getTrailing()); logger.debug_("PrivMessage parser (trailing): ", ircMessage.getTrailing());