diff options
Diffstat (limited to 'source/cPlugin.cpp')
-rw-r--r-- | source/cPlugin.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source/cPlugin.cpp b/source/cPlugin.cpp index 5fb8057a3..ce66a9655 100644 --- a/source/cPlugin.cpp +++ b/source/cPlugin.cpp @@ -283,6 +283,17 @@ bool cPlugin::OnWeatherChanged(cWorld * a_World) +bool cPlugin::OnHandshake(cClientHandle * a_Client, const AString & a_Username) +{ + UNUSED(a_Client); + UNUSED(a_Username); + return false; +} + + + + + void cPlugin::AddCommand(const AString & a_Command, const AString & a_Description, const AString & a_Permission) { CommandStruct Command; |