diff --git a/PBot/Channels.pm b/PBot/Channels.pm index ce3df6ed..d2cc39c5 100644 --- a/PBot/Channels.pm +++ b/PBot/Channels.pm @@ -50,10 +50,10 @@ sub set { my ($channel, $key, $value) = split / /, $arguments, 3; if(not defined $channel) { - return "/msg $nick Usage: chanset [[key] ]"; + return "Usage: chanset [key ]"; } - return "/msg $nick " . $self->channels->set($channel, $key, $value); + return $self->channels->set($channel, $key, $value); } sub unset { @@ -61,10 +61,10 @@ sub unset { my ($channel, $key) = split / /, $arguments; if(not defined $channel or not defined $key) { - return "/msg $nick Usage: chanunset "; + return "Usage: chanunset "; } - return "/msg $nick " . $self->channels->unset($channel, $key); + return "msg $nick " . $self->channels->unset($channel, $key); } sub add { diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index 56615ccd..e8fd1c40 100644 --- a/PBot/VERSION.pm +++ b/PBot/VERSION.pm @@ -13,7 +13,7 @@ use warnings; # These are set automatically by the build/commit script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 200, + BUILD_REVISION => 201, BUILD_DATE => "2010-06-22", };