Explorar el Código

Add alias !rcm for !rc_monitor.

pull/10/merge
Ben Kurtovic hace 8 años
padre
commit
17f87c6e16
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      commands/rc_monitor.py

+ 2
- 1
commands/rc_monitor.py Ver fichero

@@ -38,6 +38,7 @@ class RCMonitor(Command):
"""Monitors the recent changes feed for certain edits and reports them to a
dedicated channel."""
name = "rc_monitor"
commands = ["rc_monitor", "rcm"]
hooks = ["msg", "rc"]

def setup(self):
@@ -71,7 +72,7 @@ class RCMonitor(Command):
if not self._channel:
return
return isinstance(data, RC) or (
data.is_command and data.command == self.name)
data.is_command and data.command in self.commands)

def process(self, data):
if isinstance(data, RC):


Cargando…
Cancelar
Guardar