Core/Commands: remove(): fix arguments passed to unregister()

This commit is contained in:
Pragmatic Software 2021-08-06 11:14:40 -07:00
parent 275ee6952f
commit 3fc39c9359
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ sub add {
# alias to unregister() for consistency # alias to unregister() for consistency
sub remove { sub remove {
my ($self) = @_; my $self = shift @_;
$self->unregister(@_); $self->unregister(@_);
} }

View File

@ -25,7 +25,7 @@ use PBot::Imports;
# These are set by the /misc/update_version script # These are set by the /misc/update_version script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 4347, BUILD_REVISION => 4348,
BUILD_DATE => "2021-08-06", BUILD_DATE => "2021-08-06",
}; };