summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/rbot/plugins/karma.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/karma.rb b/data/rbot/plugins/karma.rb
index 060e743e..93d21189 100644
--- a/data/rbot/plugins/karma.rb
+++ b/data/rbot/plugins/karma.rb
@@ -87,7 +87,7 @@ class KarmaPlugin < Plugin
if op && arg
ac[arg] ||= 0
- ac[arg] += (op == '--' ? -1 : 1)
+ ac[arg] += (op == '--' ? -1 : 1) unless arg.downcase == m.sourcenick.downcase
op = arg = nil
end
end