diff --git a/bot.py b/bot.py index 560f474..9a745bd 100644 --- a/bot.py +++ b/bot.py @@ -227,7 +227,7 @@ async def talk(ctx: commands.Context, sentence_size: int = 5) -> None: # Command: Generate an image @bot.hybrid_command(description=f"{(_('command_desc_help'))}") -async def meme(ctx: commands.Context) -> None: +async def impact(ctx: commands.Context) -> None: assets_folder: str = "assets/images" temp_input: Optional[str] = None diff --git a/modules/globalvars.py b/modules/globalvars.py index f67df03..3292262 100644 --- a/modules/globalvars.py +++ b/modules/globalvars.py @@ -17,12 +17,10 @@ UPDATE_URL = VERSION_URL+"/latest_version.json" LOCAL_VERSION_FILE = "current_version.txt" TOKEN = os.getenv("DISCORD_BOT_TOKEN", "0") PREFIX = os.getenv("BOT_PREFIX", "g.") -hourlyspeak = int(os.getenv("hourlyspeak", "0")) PING_LINE = os.getenv("PING_LINE") CHECKS_DISABLED = os.getenv("CHECKS_DISABLED") LOCALE = os.getenv("locale", "en") gooberTOKEN = os.getenv("gooberTOKEN") -cooldown_time = os.getenv("cooldown") splashtext = os.getenv("splashtext") ownerid = int(os.getenv("ownerid", "0")) showmemenabled = os.getenv("showmemenabled") @@ -30,14 +28,13 @@ BLACKLISTED_USERS = os.getenv("BLACKLISTED_USERS", "").split(",") USERTRAIN_ENABLED = os.getenv("USERTRAIN_ENABLED", "true").lower() == "true" NAME = os.getenv("NAME") MEMORY_FILE = "memory.json" -DEFAULT_DATASET_FILE = "defaultdataset.json" -MEMORY_LOADED_FILE = "MEMORY_LOADED" +MEMORY_LOADED_FILE = "MEMORY_LOADED" # is this still even used?? okay just checked its used in the markov module ALIVEPING = os.getenv("ALIVEPING") AUTOUPDATE = os.getenv("AUTOUPDATE") -IGNOREWARNING = False +# IGNOREWARNING = False # is this either??? i don't think so? song = os.getenv("song") arch = platform.machine() -slash_commands_enabled = False +slash_commands_enabled = True # 100% broken, its a newer enough version so its probably enabled by default.... fix this at somepoint or hard code it in goober central code launched = False latest_version = "0.0.0" local_version = "2.0.0" diff --git a/modules/version.py b/modules/version.py index f54f786..9fafcac 100644 --- a/modules/version.py +++ b/modules/version.py @@ -74,7 +74,7 @@ def check_for_update(): print(f"{YELLOW}{_('changelog').format(VERSION_URL=VERSION_URL)}{RESET}") auto_update() elif local_version > latest_version and beta == True: - print(f"{YELLOW}You are running an unstable version of Goober, do not expect it to work properly.\nVersion {local_version}{RESET}") + print(f"{YELLOW}You are running an \"unstable\" version of Goober, do not expect it to work properly.\nVersion {local_version}{RESET}") elif local_version > latest_version: print(f"{YELLOW}{_('modification_warning')}{RESET}") elif local_version == latest_version: