diff --git a/modules/chillmeter.py b/modules/chillmeter.py index 13e0e1f..8b4ee82 100644 --- a/modules/chillmeter.py +++ b/modules/chillmeter.py @@ -30,6 +30,22 @@ chill_words = [ "slampiece" ] +# words that unchill the place +unchill_words = [ + "dude", + "suck", + "desi", + "lame", + "imageshack", + "microsoft", + "btreecat", + "homework", + "project", + "test", + "exam", + "4chan" +] + # all things chill chill_things = [ ("natty", "natties"), @@ -58,6 +74,10 @@ def measure(phenny, input): if w in input.lower(): chill += 1 + for w in unchill_words: + if w in input.lower(): + chill -= 1 + measure.channels[input.sender] = chill