'+= 1' -> '+= value'

This commit is contained in:
jesopo 2019-07-02 23:36:18 +01:00
parent 718b6bc394
commit e19638827e

View file

@ -161,7 +161,7 @@ class Module(ModuleManager.BaseModule):
for channel_name, value, action in all:
if not action in overall:
overall[action] = 0
overall[action] += 1
overall[action] += value
if event["is_channel"]:
channel_name_lower = event["server"].irc_lower(channel_name)