diff options
Diffstat (limited to 'bridge/irc/helper.go')
-rw-r--r-- | bridge/irc/helper.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/irc/helper.go b/bridge/irc/helper.go index dd1cc468..31382aa4 100644 --- a/bridge/irc/helper.go +++ b/bridge/irc/helper.go @@ -32,7 +32,7 @@ func tableformatter(nicks []string, nicksPerRow int, continued bool) string { } */ -func plainformatter(nicks []string, nicksPerRow int) string { +func plainformatter(nicks []string) string { return strings.Join(nicks, ", ") + " currently on IRC" } |