lizmat / IRC-Client

Raku module for building IRC (Internet Relay Chat) clients
Artistic License 2.0
15 stars 8 forks source link

「.text」 does not contain the full message, let's have 「.full-text」 ? #25

Closed AlexDaniel closed 8 years ago

AlexDaniel commented 8 years ago

If somebody writes a message like foobot, hello! then you can only see hello!. While it makes sense, sometimes it is required to get a full message foobot, hello!, and I don't see any way to do it currently. Perhaps another attribute called $full-text can be added?

zoffixznet commented 8 years ago

You can obtain it from .args

AlexDaniel commented 8 years ago

Yea, that works! Thanks!