about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--bot.py2
-rw-r--r--cogs/reddit.py4
2 files changed, 2 insertions, 4 deletions
diff --git a/bot.py b/bot.py
index bf73368..3eda9ab 100644
--- a/bot.py
+++ b/bot.py
@@ -6,7 +6,6 @@ from dotenv import load_dotenv
 
 import bot_utils
 import cogs.fun as fun
-import cogs.reddit as reddit
 import cogs.utils as utils
 
 intents = discord.Intents(messages=True, guilds=True, members=True, presences=True, reactions=True)
@@ -35,6 +34,5 @@ async def on_message(message):
 
 
 fun.setup(bot)
-reddit.setup(bot)
 utils.setup(bot)
 bot.run(os.getenv("TOKEN"))
diff --git a/cogs/reddit.py b/cogs/reddit.py
index 6ff144f..c627534 100644
--- a/cogs/reddit.py
+++ b/cogs/reddit.py
@@ -8,9 +8,9 @@ from discord.ext import commands
 
 load_dotenv()
 reddit = asyncpraw.Reddit(
-    client_id="2OTyJiFOZ1-lxXSO4-YZXw",
+    client_id="60jDYF0yBOGlP0QCDvhFew",
     client_secret=os.getenv("SECRET"),
-    user_agent="mounderfod.tpbot:v1.0.0 (by u/mounderfod)"
+    user_agent="craftvoltage.tpbot:v1.0.0 (by u/craftvoltage)"
 )