astorm complained about the separator...

master
Robert "ar" Gerus 2013-06-09 16:43:05 +02:00
parent 3222d15314
commit 4127cf4dc2
1 changed files with 3 additions and 3 deletions

View File

@ -15,10 +15,10 @@ Client.register_command("at") { |args|
end
}
r_msg += "now: #{now.join(' ')}; " if not now.empty?
r_msg += "recently: #{recently.join(' ')}; " if not recently.empty?
r_msg += "now: #{now.join(' ')}#{Config[:commands][:at][:separator]} " if not now.empty?
r_msg += "recently: #{recently.join(' ')}#{Config[:commands][:at][:separator]} " if not recently.empty?
r_msg += Config[:commands][:at][:empty] if now.empty? and recently.empty?
r_msg += "unknown: #{h["unknown"]}; " if h["unknown"] > 0
r_msg += "unknown: #{h["unknown"]}#{Config[:commands][:at][:separator]} " if h["unknown"] > 0
r_msg
}