From 6eeec3b26c69662b9dbdf83a73da1bebc635d294 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sat, 18 Jan 2020 21:58:58 -0800 Subject: [PATCH] Commands: remove "metadata" from name of HashObject --- PBot/Commands.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/Commands.pm b/PBot/Commands.pm index 3c245a09..b6ae66b3 100644 --- a/PBot/Commands.pm +++ b/PBot/Commands.pm @@ -35,7 +35,7 @@ sub initialize { $self->SUPER::initialize(%conf); $self->{pbot} = $conf{pbot} // Carp::croak("Missing pbot reference to " . __FILE__); - $self->{metadata} = PBot::HashObject->new(pbot => $self->{pbot}, name => 'Commands metadata', filename => $conf{filename}); + $self->{metadata} = PBot::HashObject->new(pbot => $self->{pbot}, name => 'Commands', filename => $conf{filename}); $self->load_metadata; $self->register(sub { $self->set(@_); }, "cmdset", 90);