diff options
-rw-r--r-- | lib/rbot/config.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/config.rb b/lib/rbot/config.rb index 44f16918..173f3337 100644 --- a/lib/rbot/config.rb +++ b/lib/rbot/config.rb @@ -253,7 +253,7 @@ module Irc def handle_set(m, params) key = params[:key].to_s.intern - value = params[:value].to_s + value = params[:value].join(" ") unless @@items.has_key?(key) m.reply "no such config key #{key}" return |