Skip to content

Instantly share code, notes, and snippets.

from discord.ext import commands
class ModifiedBot(commands.Bot):
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.add_command(self.foo)
self.add_command(self.spam)