summaryrefslogtreecommitdiffstats
path: root/source/cPlugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/cPlugin.cpp')
-rw-r--r--source/cPlugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cPlugin.cpp b/source/cPlugin.cpp
index 146e222cc..86f9e8fd5 100644
--- a/source/cPlugin.cpp
+++ b/source/cPlugin.cpp
@@ -83,10 +83,10 @@ bool cPlugin::OnBlockToPickup(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, con
-bool cPlugin::OnChat(const char * a_Chat, cPlayer * a_Player)
+bool cPlugin::OnChat(cPlayer * a_Player, const AString & a_Message)
{
- UNUSED(a_Chat);
UNUSED(a_Player);
+ UNUSED(a_Message);
return false;
}