bitbot-3.11-fork/modules/strip_color.py

11 lines
428 B
Python
Raw Normal View History

from src import ModuleManager, utils
2018-09-30 19:12:11 +00:00
@utils.export("serverset", {"setting": "strip-color",
2018-09-30 19:12:11 +00:00
"help": "Set whether I strip colors from my messages on this server",
"validate": utils.bool_or_none})
2018-09-30 19:12:11 +00:00
class Module(ModuleManager.BaseModule):
@utils.hook("preprocess.send")
2018-09-30 19:12:11 +00:00
def preprocess(self, event):
if event["server"].get_setting("strip-color", False):
return utils.irc.strip_font(event["line"])