From 6c5a42737ff51f7088a672ef2ca2be777597eb7b Mon Sep 17 00:00:00 2001 From: "lapayo94@gmail.com" Date: Thu, 12 Jul 2012 20:55:29 +0000 Subject: Save last gamemode git-svn-id: http://mc-server.googlecode.com/svn/trunk@660 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cClientHandle.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'source/cClientHandle.cpp') diff --git a/source/cClientHandle.cpp b/source/cClientHandle.cpp index e4c501a4f..6e7df2bb8 100644 --- a/source/cClientHandle.cpp +++ b/source/cClientHandle.cpp @@ -307,7 +307,7 @@ void cClientHandle::Authenticate(void) World = cRoot::Get()->GetDefaultWorld(); } - m_Player->LoginSetGameMode (World->GetGameMode()); //set player's gamemode to server's gamemode at login. TODO: set to last player's gamemode at logout + // We donīt need this, do we? m_Player->LoginSetGameMode (World->GetGameMode()); //set player's gamemode to server's gamemode at login. TODO: set to last player's gamemode at logout m_Player->SetIP (m_Socket.GetIPString()); @@ -909,6 +909,14 @@ void cClientHandle::HandleBlockDig(cPacket_BlockDig * a_Packet) void cClientHandle::HandleBlockPlace(cPacket_BlockPlace * a_Packet) { + if(a_Packet->m_PosX == -1 + && a_Packet->m_PosY == 255 + && a_Packet->m_PosZ == -1) + { + //I donīt know whats the idea behind these packets O.o + return; + } + if (!CheckBlockInteractionsRate()) { return; -- cgit v1.2.3