diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-04-19 22:03:17 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-04-20 00:29:52 +0200 |
commit | 246acb19f99cf974080e1bdf28acd6a263d6e971 (patch) | |
tree | 1bf8b98509aea91a629ee08d7c0fc952d9e00ee5 /src/ClientHandle.cpp | |
parent | Correct world access in NetherPortalScanner (diff) | |
download | cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar.gz cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar.bz2 cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar.lz cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar.xz cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.tar.zst cuberite-246acb19f99cf974080e1bdf28acd6a263d6e971.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index cb9b83e26..5e9736371 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -3047,9 +3047,9 @@ void cClientHandle::SendSpawnMob(const cMonster & a_Mob) -void cClientHandle::SendSpawnObject(const cEntity & a_Entity, char a_ObjectType, int a_ObjectData, Byte a_Yaw, Byte a_Pitch) +void cClientHandle::SendSpawnObject(const cEntity & a_Entity, char a_ObjectType, int a_ObjectData) { - m_Protocol->SendSpawnObject(a_Entity, a_ObjectType, a_ObjectData, a_Yaw, a_Pitch); + m_Protocol->SendSpawnObject(a_Entity, a_ObjectType, a_ObjectData); } |