diff --git a/sweebot.py b/sweebot.py index d829e81..3fc6a25 100644 --- a/sweebot.py +++ b/sweebot.py @@ -658,7 +658,7 @@ while True: elif command[0] == "$sed": if len(command) == 2: - replased(command[1]) + replased(" ".join(command[1:])) else: irc.send_irc(channel, nick + ": [???] This command takes only one argument.") @@ -741,7 +741,7 @@ while True: elif command[0][:2].lower() == "s/": logs[channel] = logs[channel][:-1] if sbconfig.cflagexist(channel, "+sed"): - replased(command[0]) + replased(" ".join(command)) # try to parse and find a link if sbconfig.cflagexist(channel, "+links"):