aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoffix Znet <zoffixznet@users.noreply.github.com>2018-08-03 11:48:50 -0400
committerGitHub <noreply@github.com>2018-08-03 11:48:50 -0400
commit8a01816eb404de518c609b64ccba2b196951d700 (patch)
tree39e9f3db7bb78f7f3a2b9a9a9916f7df695cae95
parent723424b2cea164bf7d93f492afe39f409af916e0 (diff)
Allow | in nicks
-rw-r--r--lib/IRC/Client/Grammar.pm62
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IRC/Client/Grammar.pm6 b/lib/IRC/Client/Grammar.pm6
index 4037d43..9afecc7 100644
--- a/lib/IRC/Client/Grammar.pm6
+++ b/lib/IRC/Client/Grammar.pm6
@@ -23,4 +23,4 @@ token message { [':' <prefix> <SPACE> ]? <command> <params> \n }
token letter { <[a..zA..Z]> }
token number { <[0..9]> }
- token special { <[-_\[\]\\`^{}]> }
+ token special { <[-_\[\]\\`^{}|]> }