Line **30**: ```diff - client = discord.Client() - bot = commands.Bot(command_prefix='!') + intents = discord.Intents.default() + intents.message_content = True + client = discord.Client(intents=intents) + bot = commands.Bot(intents=intents, command_prefix='!') ```