We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c74cd9 commit 5dc2157Copy full SHA for 5dc2157
1 file changed
src/Native/Camera.ts
@@ -207,7 +207,7 @@ export default class ClientCamera extends CameraEntity {
207
entity.positionData.values.x + width > l &&
208
entity.positionData.values.y - size < b
209
) {
210
- if (entity !== this.cameraData.values.player && entity.styleData.values.opacity !== 0) { // Invisible tanks shouldn't be sent
+ if (entity !== this.cameraData.values.player && !(entity.styleData.values.opacity === 0 && !entity.deletionAnimation)) { // Invisible tanks shouldn't be sent
211
entitiesInRange.push(entity);
212
}
213
0 commit comments