diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-02 14:09:58 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-02 14:09:58 +0200 |
commit | c7d5c00a17c8e4d79f6b0e855d88cc42876f63a9 (patch) | |
tree | b45b5dc8f89d105cef77c8cb5b8f4be270e903fd /source/Protocol125.cpp | |
parent | Added a CreateHexDump() function for easier raw data debugging (diff) | |
download | cuberite-c7d5c00a17c8e4d79f6b0e855d88cc42876f63a9.tar cuberite-c7d5c00a17c8e4d79f6b0e855d88cc42876f63a9.tar.gz cuberite-c7d5c00a17c8e4d79f6b0e855d88cc42876f63a9.tar.bz2 cuberite-c7d5c00a17c8e4d79f6b0e855d88cc42876f63a9.tar.lz cuberite-c7d5c00a17c8e4d79f6b0e855d88cc42876f63a9.tar.xz cuberite-c7d5c00a17c8e4d79f6b0e855d88cc42876f63a9.tar.zst cuberite-c7d5c00a17c8e4d79f6b0e855d88cc42876f63a9.zip |
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);
|