forked from Firepup650/FireBot
commands MUST be all lowercase
This commit is contained in:
parent
fb2f4b7082
commit
a3e0d44784
1 changed files with 2 additions and 2 deletions
|
@ -175,7 +175,7 @@ data: dict[str, dict[str, Any]] = {
|
|||
"goat.mode.activate": {"prefix": True, "aliases": [], "admin": True},
|
||||
"goat.mode.deactivate": {"prefix": True, "aliases": [], "admin": True},
|
||||
"help": {"prefix": True, "aliases": []},
|
||||
"amIAdmin": {"prefix": True, "aliases": []},
|
||||
"amiadmin": {"prefix": True, "aliases": []},
|
||||
"ping": {"prefix": True, "aliases": []},
|
||||
"op me": {"prefix": False, "aliases": [], "admin": True},
|
||||
}
|
||||
|
@ -196,7 +196,7 @@ call: dict[str, Callable[[bare.bot, str, str, str], None]] = {
|
|||
"goat.mode.activate": goatOn,
|
||||
"goat.mode.decativate": goatOff,
|
||||
"help": help,
|
||||
"amIAdmin": isAdmin,
|
||||
"amiadmin": isAdmin,
|
||||
"ping": ping,
|
||||
"op me": op,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue