diff --git a/modules/modperl/startup.pl b/modules/modperl/startup.pl index f47a465d..f5ece23f 100644 --- a/modules/modperl/startup.pl +++ b/modules/modperl/startup.pl @@ -340,6 +340,7 @@ sub OnKick {} sub OnJoining {} sub OnJoin {} sub OnPart {} +sub OnInvite {} sub OnChanBufferStarting {} sub OnChanBufferEnding {} sub OnChanBufferPlayLine {} diff --git a/modules/modpython/znc.py b/modules/modpython/znc.py index 81650f10..10851926 100644 --- a/modules/modpython/znc.py +++ b/modules/modpython/znc.py @@ -291,6 +291,9 @@ class Module: def OnPart(self, Nick, Channel, sMessage=None): pass + def OnInvite(self, Nick, sChan): + pass + def OnChanBufferStarting(self, Chan, Client): pass