diff --git a/lib/PBot/Plugin/Spinach.pm b/lib/PBot/Plugin/Spinach.pm index b122594f..a294fdb6 100644 --- a/lib/PBot/Plugin/Spinach.pm +++ b/lib/PBot/Plugin/Spinach.pm @@ -13,7 +13,7 @@ package PBot::Plugin::Spinach; use parent 'PBot::Plugin::Base'; use PBot::Imports; -use PBot::Storage::HashObject; +use PBot::Core::Storage::HashObject; use PBot::Plugin::Spinach::Stats; use PBot::Plugin::Spinach::Rank; @@ -56,7 +56,7 @@ sub initialize { $self->{metadata_filename} = $self->{pbot}->{registry}->get_value('general', 'data_dir') . '/spinach/metadata'; $self->{stats_filename} = $self->{pbot}->{registry}->get_value('general', 'data_dir') . '/spinach/stats.sqlite'; - $self->{metadata} = PBot::Storage::HashObject->new(pbot => $self->{pbot}, name => 'Spinach Metadata', filename => $self->{metadata_filename}); + $self->{metadata} = PBot::Core::Storage::HashObject->new(pbot => $self->{pbot}, name => 'Spinach Metadata', filename => $self->{metadata_filename}); $self->{metadata}->load; $self->set_metadata_defaults; diff --git a/lib/PBot/VERSION.pm b/lib/PBot/VERSION.pm index 60c7d059..27aade6f 100644 --- a/lib/PBot/VERSION.pm +++ b/lib/PBot/VERSION.pm @@ -25,8 +25,8 @@ use PBot::Imports; # These are set by the /misc/update_version script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 4384, - BUILD_DATE => "2021-09-10", + BUILD_REVISION => 4385, + BUILD_DATE => "2021-09-12", }; sub initialize {}