From e1c0cd228653384a79674d25d1b32a0ae9a734a9 Mon Sep 17 00:00:00 2001 From: Metroid_Skittles Date: Thu, 19 Mar 2026 14:27:03 -0400 Subject: [PATCH] reduce access level for WolframAlpha and UrbanDictionary commands from 10 to 6 --- torchlight_changes_unloze/torchlight3/Torchlight/Commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/torchlight_changes_unloze/torchlight3/Torchlight/Commands.py b/torchlight_changes_unloze/torchlight3/Torchlight/Commands.py index d244c44..784b016 100755 --- a/torchlight_changes_unloze/torchlight3/Torchlight/Commands.py +++ b/torchlight_changes_unloze/torchlight3/Torchlight/Commands.py @@ -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."""