3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-01-25 19:44:26 +01:00

Users: Whoops, used $user instead of $u

This commit is contained in:
Pragmatic Software 2020-01-31 12:33:20 -08:00
parent a5fbb74095
commit 7373ae6315

View File

@ -75,7 +75,7 @@ sub on_join {
if ($u->{autologin}) { if ($u->{autologin}) {
$self->{pbot}->{logger}->log("$nick!$user\@$host autologin to $u->{name} ($u->{level}) for $channel\n"); $self->{pbot}->{logger}->log("$nick!$user\@$host autologin to $u->{name} ($u->{level}) for $channel\n");
$user->{loggedin} = 1; $u->{loggedin} = 1;
} }
} }
return 0; return 0;