diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-09-13 02:20:04 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-09-13 02:20:04 +0200 |
commit | b462416e1fef58b3ddccc92f3dfe613fc27d5483 (patch) | |
tree | af9097c1ca4b284ac0342fc01f221be2fd1240b0 /src/ClientHandle.cpp | |
parent | Merge branch 'master' into 1.8-Protocol (diff) | |
download | cuberite-b462416e1fef58b3ddccc92f3dfe613fc27d5483.tar cuberite-b462416e1fef58b3ddccc92f3dfe613fc27d5483.tar.gz cuberite-b462416e1fef58b3ddccc92f3dfe613fc27d5483.tar.bz2 cuberite-b462416e1fef58b3ddccc92f3dfe613fc27d5483.tar.lz cuberite-b462416e1fef58b3ddccc92f3dfe613fc27d5483.tar.xz cuberite-b462416e1fef58b3ddccc92f3dfe613fc27d5483.tar.zst cuberite-b462416e1fef58b3ddccc92f3dfe613fc27d5483.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 9b6151656..fa27664ef 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -2337,18 +2337,18 @@ void cClientHandle::SendInventorySlot(char a_WindowID, short a_SlotNum, const cI -void cClientHandle::SendMapColumn(int a_ID, int a_X, int a_Y, const Byte * a_Colors, unsigned int a_Length) +void cClientHandle::SendMapColumn(int a_ID, int a_X, int a_Y, const Byte * a_Colors, unsigned int a_Length, unsigned int m_Scale) { - m_Protocol->SendMapColumn(a_ID, a_X, a_Y, a_Colors, a_Length); + m_Protocol->SendMapColumn(a_ID, a_X, a_Y, a_Colors, a_Length, m_Scale); } -void cClientHandle::SendMapDecorators(int a_ID, const cMapDecoratorList & a_Decorators) +void cClientHandle::SendMapDecorators(int a_ID, const cMapDecoratorList & a_Decorators, unsigned int m_Scale) { - m_Protocol->SendMapDecorators(a_ID, a_Decorators); + m_Protocol->SendMapDecorators(a_ID, a_Decorators, m_Scale); } |