3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

Plugins: Fix default location

This commit is contained in:
Pragmatic Software 2019-11-07 20:09:31 -08:00
parent e1d48f707d
commit 12c20284a1

View File

@ -47,7 +47,7 @@ sub autoload {
return if $self->{pbot}->{registry}->get_value('plugins', 'noautoload');
my $path = $self->{pbot}->{registry}->get_value('plugins', 'path') // 'PBot/Plugins';
my $path = $self->{pbot}->{registry}->get_value('plugins', 'path') // 'Plugins';
$self->{pbot}->{logger}->log("Loading plugins ...\n");
my $plugin_count = 0;