diff --git a/main.py b/main.py index 662f308..b82f323 100644 --- a/main.py +++ b/main.py @@ -2695,7 +2695,11 @@ def do_command(self, command, args, sender, channel, tags, isWhisper=False): if command == "buy": if len(args) != 1: if len(args) > 0 and args[0].lower() == "booster": - self.message(channel, "%s, did you mean !booster buy?" % tags['display-name'], isWhisper) + #we know what they meant, just do the command + args[0] = "buy" + command = "booster" + self.do_command(command, args, sender, channel, tags, isWhisper) + return else: self.message(channel, "Usage: !buy (So !buy uncommon for an uncommon)", isWhisper=isWhisper)