From d1a3a89c334fcb20af0996e841afa2036d60c24d Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Thu, 1 Jul 2021 21:07:27 -0700 Subject: [PATCH] IRCHandlers: restore missing space in departure messages --- PBot/IRCHandlers.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/IRCHandlers.pm b/PBot/IRCHandlers.pm index c204b3ea..2bdf7fc6 100644 --- a/PBot/IRCHandlers.pm +++ b/PBot/IRCHandlers.pm @@ -528,7 +528,7 @@ sub on_departure { ($nick, $user, $host) = $self->normalize_hostmask($nick, $user, $host); - my $text = uc ($event->{event}->type) . $args; + my $text = uc ($event->{event}->type) . ' ' . $args; my $message_account = $self->{pbot}->{messagehistory}->get_message_account($nick, $user, $host);