diff --git a/modules/modperl/startup.pl b/modules/modperl/startup.pl index 90c46004..9ce74652 100644 --- a/modules/modperl/startup.pl +++ b/modules/modperl/startup.pl @@ -366,6 +366,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 4443acea..aa33e345 100644 --- a/modules/modpython/znc.py +++ b/modules/modpython/znc.py @@ -311,6 +311,9 @@ class Module: def OnPart(self, Nick, Channel, sMessage=None): pass + def OnInvite(self, Nick, sChan): + pass + def OnChanBufferStarting(self, Chan, Client): pass