| 3016 | |
| 3017 | |
| 3018 | void cChunk::SendBlockEntity(int a_BlockX, int a_BlockY, int a_BlockZ, cClientHandle & a_Client) |
| 3019 | { |
| 3020 | cBlockEntity * Entity = GetBlockEntity(a_BlockX, a_BlockY, a_BlockZ); |
| 3021 | if (Entity == NULL) |
| 3022 | { |
| 3023 | return; |
| 3024 | } |
| 3025 | Entity->SendTo(a_Client); |
| 3026 | } |
| 3027 | |
| 3028 | |
| 3029 |