diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-10-04 23:46:51 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-10-04 23:46:51 +0000 |
commit | c8fc75ab7bbc7acc1690ebe7411d6f6fe9f47d26 (patch) | |
tree | 3fe3b1f403ef2e28dfacb1bd8d94d36f334177ee | |
parent | 7dc90478a90c43ae1dde9332cc5e1ee282727f4e (diff) |
quiz plugin: split top N tables at the name divisor
-rw-r--r-- | data/rbot/plugins/games/quiz.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/games/quiz.rb b/data/rbot/plugins/games/quiz.rb index 37602fba..792b75ae 100644 --- a/data/rbot/plugins/games/quiz.rb +++ b/data/rbot/plugins/games/quiz.rb @@ -706,7 +706,7 @@ class QuizPlugin < Plugin score = player[1].score ar << "#{i + 1}. #{unhilight_nick( nick )} (#{score})" end - m.reply ar.join(" | ") + m.reply ar.join(" | "), :split_at => /\s+\|\s+/ end |