Fix OnInvite in modpython and modperl.

They were silently not called.

Close #1283
This commit is contained in:
Alexey Sokolov
2016-07-31 10:35:19 +01:00
parent bb20971fff
commit dd58e369f8
4 changed files with 4 additions and 0 deletions

View File

@@ -87,6 +87,7 @@ public:
virtual EModRet OnJoining(CChan& Channel) override;
virtual void OnJoin(const CNick& Nick, CChan& Channel) override;
virtual void OnPart(const CNick& Nick, CChan& Channel, const CString& sMessage) override;
virtual EModRet OnInvite(const CNick& Nick, const CString& sChan) override;
virtual EModRet OnChanBufferStarting(CChan& Chan, CClient& Client) override;
virtual EModRet OnChanBufferEnding(CChan& Chan, CClient& Client) override;
virtual EModRet OnChanBufferPlayLine(CChan& Chan, CClient& Client, CString& sLine) override;