reduce access level for WolframAlpha and UrbanDictionary commands from 10 to 6

This commit is contained in:
Metroid_Skittles 2026-03-19 14:27:03 -04:00
parent aedf0b0b43
commit e1c0cd2286

View File

@ -720,7 +720,7 @@ class WolframAlpha(BaseCommand):
def __init__(self, torchlight) -> None:
super().__init__(torchlight)
self.Triggers = ["!cc"]
self.Level = 10
self.Level = 6
@staticmethod
def _clean_text(text: str) -> str:
@ -828,7 +828,7 @@ class UrbanDictionary(BaseCommand):
def __init__(self, torchlight) -> None:
super().__init__(torchlight)
self.Triggers = ["!define", "!ud"]
self.Level = 10
self.Level = 6
async def _func(self, message: List[str], player) -> int:
"""Execute definition lookup command."""