diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2021-04-06 13:26:43 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2021-04-12 23:35:07 +0200 |
commit | 1394fc8eb5c8c0ac49bb64ce1871a80470f058c3 (patch) | |
tree | c2f244154cb90f814e448da9ab9cb09b430d6b1e /src/Broadcaster.cpp | |
parent | Fix block break particles (diff) | |
download | cuberite-1394fc8eb5c8c0ac49bb64ce1871a80470f058c3.tar cuberite-1394fc8eb5c8c0ac49bb64ce1871a80470f058c3.tar.gz cuberite-1394fc8eb5c8c0ac49bb64ce1871a80470f058c3.tar.bz2 cuberite-1394fc8eb5c8c0ac49bb64ce1871a80470f058c3.tar.lz cuberite-1394fc8eb5c8c0ac49bb64ce1871a80470f058c3.tar.xz cuberite-1394fc8eb5c8c0ac49bb64ce1871a80470f058c3.tar.zst cuberite-1394fc8eb5c8c0ac49bb64ce1871a80470f058c3.zip |
Diffstat (limited to 'src/Broadcaster.cpp')
-rw-r--r-- | src/Broadcaster.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Broadcaster.cpp b/src/Broadcaster.cpp index 09b834471..770a3987c 100644 --- a/src/Broadcaster.cpp +++ b/src/Broadcaster.cpp @@ -345,6 +345,19 @@ void cWorld::BroadcastEntityPosition(const cEntity & a_Entity, const cClientHand +void cWorld::BroadcastEntityProperties(const cEntity & a_Entity) +{ + ForClientsWithEntity(a_Entity, *this, nullptr, [&](cClientHandle & a_Client) + { + a_Client.SendEntityProperties(a_Entity); + } + ); +} + + + + + void cWorld::BroadcastEntityStatus(const cEntity & a_Entity, Int8 a_Status, const cClientHandle * a_Exclude) { ForClientsWithEntity(a_Entity, *this, a_Exclude, [&](cClientHandle & a_Client) |