diff options
Diffstat (limited to 'source/Plugin.cpp')
-rw-r--r-- | source/Plugin.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source/Plugin.cpp b/source/Plugin.cpp index 3c2502617..879a1a3d6 100644 --- a/source/Plugin.cpp +++ b/source/Plugin.cpp @@ -164,6 +164,17 @@ bool cPlugin::OnDisconnect(cPlayer * a_Player, const AString & a_Reason) +bool cPlugin::OnExecuteCommand(cPlayer * a_Player, const AStringVector & a_Split) +{ + UNUSED(a_Player); + UNUSED(a_Split); + return false; +} + + + + + bool cPlugin::OnHandshake(cClientHandle * a_Client, const AString & a_Username) { UNUSED(a_Client); |