There's a bug where having multiple active invites makes the bot always complain about 2 people joining at the same time.
That's because the code checks deltaUsesMap.size(), and if that's greater than 1, it throws the 2 people joined at the same time error. But right now the delta map is full of unused invites.
There's a bug where having multiple active invites makes the bot always complain about 2 people joining at the same time.
That's because the code checks
deltaUsesMap.size()
, and if that's greater than 1, it throws the 2 people joined at the same time error. But right now the delta map is full of unused invites.