1
0

- Chests open and close on clients when opened/closed

- Beginnings of "Double Chest". All that's needed is detection when 2 chests get put next to each other, block other chests from then touching them on any side, load/save with the m_JoinedChest seeing each other and adding and making sure the left side is always the top rows.

I'm not sure exactly at this moment how to do all of the detection and saving/loading of the double chest stuff so if you've any ideas feel free to point out some areas in the server code or implement it yourself.

git-svn-id: http://mc-server.googlecode.com/svn/trunk@154 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
mtilden@gmail.com
2011-12-29 13:16:23 +00:00
parent 2ca40c819e
commit c4f4ae5c71
6 changed files with 84 additions and 7 deletions

View File

@@ -629,7 +629,7 @@ void cClientHandle::HandlePacket( cPacket* a_Packet )
if(PossibleBlock == E_BLOCK_FIRE)
{
PacketData->m_PosX = pX;
PacketData->m_PosY = pY;
PacketData->m_PosY = (char)pY;
PacketData->m_PosZ = pZ;
bBroken = true;
}