summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/rbot/config.rb2
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