Skip to content

Commit

Permalink
reverted changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinyhunter2109 committed Apr 28, 2024
1 parent a810b54 commit 29385b5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Discord-Bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@
handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s'))
logger.addHandler(handler)

client = commands.Bot(command_prefix = '!', intents = intents)
discord.Intents().all() intents.members = True
client = commands.Bot(command_prefix = '!', intents = discord.Intents.all())
client.launch_time = datetime.utcnow()
guild_ids = [0000000000000] # Your Guild ID goes here (multiple guilds possible) #
client.warnings = {} # guild_id : {member_id: [count, [(admin_id, reason)]]}
Expand All @@ -75,7 +74,6 @@
status = cycle(['Pokémon Scarlet', 'Pokémon Violet']) # Standard Games can be edited if needed #
ROLE = 'Member' # Standard Role can be edited when needed ! #


def setprefix():
with open("prefix.txt") as f: # (can be changed but totally optional)
return "\n".join(f.readlines())
Expand Down

0 comments on commit 29385b5

Please sign in to comment.