diff options
Diffstat (limited to '')
-rw-r--r-- | source/Protocol125.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Protocol125.cpp b/source/Protocol125.cpp index 2adb68fa0..41a64f24b 100644 --- a/source/Protocol125.cpp +++ b/source/Protocol125.cpp @@ -417,8 +417,9 @@ void cProtocol125::SendKeepAlive(int a_PingID) -void cProtocol125::SendLogin(const cPlayer & a_Player)
+void cProtocol125::SendLogin(const cPlayer & a_Player, const cWorld & a_World)
{
+ UNUSED(a_World);
cCSLock Lock(m_CSPacket);
WriteByte (PACKET_LOGIN);
|