Is it possible to run the same bot multiple times and have them each independently handle commands?
I was wondering if I can just run multiple instances of the same bot and have them handle commands on a per channel basis. Each instance of the bot would have it's own config that tells it what channel it can respond to commands in.
I was able to achieve this in discord-akairo (old discord framework) with message commands, but I don't know if this would work with interaction commands.
Solution
Nevermind. Everything worked perfectly from the start. My own filter feature was making me think no messages were being sent to the second instance's channel. I guess there was an influx of messages all at once in the first instance's channel which made me think it was both instance's messages.