1
0

Fix for Rev 814, the correct cPlayer object is actually sent into the callbacks.

git-svn-id: http://mc-server.googlecode.com/svn/trunk@816 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com 2012-09-01 21:44:18 +00:00
parent 79a9c8cf1c
commit 65cc040971

View File

@ -839,7 +839,7 @@ void cClientHandle::HandleUpdateSign(
)
{
cWorld * World = m_Player->GetWorld();
World->UpdateSign(a_BlockX, a_BlockY, a_BlockZ, a_Line1, a_Line2, a_Line3, a_Line4);
World->UpdateSign(a_BlockX, a_BlockY, a_BlockZ, a_Line1, a_Line2, a_Line3, a_Line4, m_Player);
}