summaryrefslogtreecommitdiff
path: root/data/rbot/plugins/bans.rb
diff options
context:
space:
mode:
Diffstat (limited to 'data/rbot/plugins/bans.rb')
-rw-r--r--data/rbot/plugins/bans.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/bans.rb b/data/rbot/plugins/bans.rb
index f80dd70f..99b664df 100644
--- a/data/rbot/plugins/bans.rb
+++ b/data/rbot/plugins/bans.rb
@@ -458,7 +458,7 @@ class BansPlugin < Plugin
when /^(\d+)m$/
timer = $1.to_i * 60
when /^(\d+)h$/
- timer = $1.to_i * 60 * 60
+ timer = $1.to_i * 60 * 60
when /^(\d+)d$/
timer = $1.to_i * 60 * 60 * 24
else