diff --git a/sopel/bot.py b/sopel/bot.py index cb2bc604d3..696a8dfe0d 100644 --- a/sopel/bot.py +++ b/sopel/bot.py @@ -510,7 +510,7 @@ def say(self, text, recipient, max_messages=1): # Now that we've sent the first part, we need to send the rest. Doing # this recursively seems easier to me than iteratively if excess: - self.say(excess, max_messages - 1, recipient) + self.say(excess, recipient, max_messages - 1) def notice(self, text, dest): """Send an IRC NOTICE to a user or channel.