aboutsummaryrefslogtreecommitdiff
path: root/modules/karma.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-11 21:00:09 +0000
committerGravatar jesopo2019-01-11 21:00:09 +0000
commite523671633e9bcf2fa59edb7e26cc72b489a736d (patch)
tree024a5f66ffc4f295ac46d5197138c1788658b0d7 /modules/karma.py
parentDon't use bolding for command colors (commands.py) (diff)
signature
Made positive karma show as LIGHTGREEN, not GREEN (karma.py)
Diffstat (limited to 'modules/karma.py')
-rw-r--r--modules/karma.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/karma.py b/modules/karma.py
index 903073be..da9cd156 100644
--- a/modules/karma.py
+++ b/modules/karma.py
@@ -16,7 +16,7 @@ class Module(ModuleManager.BaseModule):
if karma < 0:
return utils.irc.color(str(karma), utils.consts.RED)
elif karma > 0:
- return utils.irc.color(str(karma), utils.consts.GREEN)
+ return utils.irc.color(str(karma), utils.consts.LIGHTGREEN)
return str(karma)