Ver código fonte

data.command, not self.command!

tags/v0.1^2
Ben Kurtovic 12 anos atrás
pai
commit
ad0dd972cb
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      earwigbot/commands/lag.py

+ 2
- 2
earwigbot/commands/lag.py Ver arquivo

@@ -32,10 +32,10 @@ class Lag(Command):
site = self.get_site(data)
if not site:
return
if self.command == "replag":
if data.command == "replag":
base = "\x0302{0}\x0F: {1}."
msg = base.format(site.name, self.get_replag(site))
elif self.command == "maxlag":
elif data.command == "maxlag":
base = "\x0302{0}\x0F: {1}."
msg = base.format(site.name, self.get_maxlag(site).capitalize())
else:


Carregando…
Cancelar
Salvar