3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

irchandlers: remove dumping of event on mode change

This commit is contained in:
Pragmatic Software 2011-02-13 09:07:11 +00:00
parent ea198bcab1
commit a0c11ac1d4
2 changed files with 1 additions and 4 deletions

View File

@ -124,9 +124,6 @@ sub on_mode {
my $i = 0; my $i = 0;
my $target; my $target;
use Data::Dumper;
print Dumper($event), "\n";
while($mode_string =~ m/(.)/g) { while($mode_string =~ m/(.)/g) {
my $char = $1; my $char = $1;

View File

@ -13,7 +13,7 @@ use warnings;
# These are set automatically by the build/commit script # These are set automatically by the build/commit script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 313, BUILD_REVISION => 314,
BUILD_DATE => "2011-02-13", BUILD_DATE => "2011-02-13",
}; };