diff options
Diffstat (limited to '')
-rw-r--r-- | source/cPlugin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/cPlugin.cpp b/source/cPlugin.cpp index 10f5d74d3..5fc056a2d 100644 --- a/source/cPlugin.cpp +++ b/source/cPlugin.cpp @@ -5,6 +5,7 @@ cPlugin::cPlugin()
: m_Version( 0 )
+ , m_Language( E_CPP )
{
}
@@ -44,7 +45,7 @@ bool cPlugin::OnDisconnect( std::string a_Reason, cPlayer* a_Player ) return false;
}
-bool cPlugin::OnChat( std::string a_Chat, cPlayer* a_Player )
+bool cPlugin::OnChat( const char* a_Chat, cPlayer* a_Player )
{
(void)a_Chat;
(void)a_Player;
|