3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-12-24 11:42:35 +01:00

Insert additional events to IRC::Event::_names table so default handlers will pick them up

Fix up indentation of _names table
This commit is contained in:
Pragmatic Software 2014-11-01 00:08:21 +00:00
parent 5a63fbd705
commit bc604d3ce2
2 changed files with 260 additions and 245 deletions

View File

@ -455,6 +455,21 @@ sub trans {
999 => "numericerror", # Bahamut IRCD
# add these events so that default handlers will kick in and handle them
# pragma_ 10/30/2014
'notice' => 'notice',
'public' => 'public',
'kick' => 'kick',
'mode' => 'mode',
'msg' => 'msg',
'disconnect' => 'disconnect',
'part' => 'part',
'join' => 'join',
'caction' => 'caction',
'quit' => 'quit',
'nick' => 'nick',
'pong' => 'pong',
'invite' => 'invite',
);

View File

@ -13,8 +13,8 @@ use warnings;
# These are set automatically by the build/commit script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 797,
BUILD_DATE => "2014-10-28",
BUILD_REVISION => 798,
BUILD_DATE => "2014-10-31",
};
1;