self.initialize_actionthreads()
self.echo("Worker One available for master.")
- key = shlex.split(msg["body"])
+ key = shlex.split(msg["body"].lower())
# cut the nick from the message
offset = 0
class Doctor(Worker):
binding_keys = [
"#.doctor.#",
- "#.Doctor.#",
"#.doktor.#",
- "#.Doktor.#",
]
description = "machines don't like the doctor."
def parse_body(self, msg):
- return Action(msg="ELIMINIEREN! ELIMINIEREN!")
+ return Action(msg="ELIMINATE! ELIMINATE!")
ALL = [Klammer, Terminate, Unicode, Slap, Consumables, MentalDeficits, Selfreaction, Doctor]