From 12c20284a1ef9f16d5db6ef79b196f90e5562ae2 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Thu, 7 Nov 2019 20:09:31 -0800 Subject: [PATCH] Plugins: Fix default location --- PBot/Plugins.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/Plugins.pm b/PBot/Plugins.pm index 93c4b8d2..52467465 100644 --- a/PBot/Plugins.pm +++ b/PBot/Plugins.pm @@ -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;