Sfoglia il codice sorgente

data.command, not self.command!

tags/v0.1^2
Ben Kurtovic 12 anni fa
parent
commit
ad0dd972cb
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      earwigbot/commands/lag.py

+ 2
- 2
earwigbot/commands/lag.py Vedi File

@@ -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:


Caricamento…
Annulla
Salva