From 70d0cf8e7e510fc8cc65bb70be83c3771fe51fff Mon Sep 17 00:00:00 2001 From: Robert Gerus Date: Sun, 19 Apr 2015 18:26:37 +0200 Subject: [PATCH] fixorz --- plugins/commands/at.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands/at.rb b/plugins/commands/at.rb index 02bdaa3..b055455 100644 --- a/plugins/commands/at.rb +++ b/plugins/commands/at.rb @@ -18,7 +18,7 @@ Client.register_command("at") { |args| r_msg += "now: #{now.join(' ')}#{Config.lookup("commands::at::separator")} " if not now.empty? r_msg += "recently: #{recently.join(' ')}#{Config.lookup("commands::at::separator")} " if not recently.empty? r_msg += Config.lookup("commands::at::empty") if now.empty? and recently.empty? - r_msg += "unknown: #{h[:unknown]}#{Config.lookup("commands::at::separator")} " if h[:unknown] > 0 + r_msg += "unknown: #{h["unknown"]}#{Config.lookup("commands::at::separator")} " if h["unknown"] > 0 r_msg }