Limit number of columns to number of IRC nicks.

Don't add more columns to the IRC nicks table than the total number of
nicks in the IRC channel.
pull/14/head
Fredrik de Vibe 8 years ago
parent a53e699112
commit 3fcce2d8a0

@ -83,7 +83,7 @@ func tableformatter (nicks_s string, nicksPerRow int) string {
nicksPerRow = 4
}
for i := 0; i < 2; i++ {
for j := 1; j <= nicksPerRow; j++ {
for j := 1; j <= nicksPerRow && j <= len(nicks); j++ {
if i == 0 {
result += "|"
} else {

Loading…
Cancel
Save