mirror of
https://github.com/pragma-/pbot.git
synced 2025-01-11 20:42:38 +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:
parent
5a63fbd705
commit
bc604d3ce2
@ -455,6 +455,21 @@ sub trans {
|
|||||||
|
|
||||||
999 => "numericerror", # Bahamut IRCD
|
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',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,8 +13,8 @@ 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 => 797,
|
BUILD_REVISION => 798,
|
||||||
BUILD_DATE => "2014-10-28",
|
BUILD_DATE => "2014-10-31",
|
||||||
};
|
};
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
Loading…
Reference in New Issue
Block a user