fix bump streaming

This commit is contained in:
biglyderv 2024-11-25 14:14:20 -05:00
parent 3ea1430db7
commit 0a74708617
2 changed files with 2 additions and 4 deletions

View file

@ -9,8 +9,8 @@ class Game extends GameBasic {
let { entities } = this;
let entList = [];
for (let entity of entities) {
let { pos, vel, rot, dir, health, headCount, you, camera } = entity;
entList.push({ pos, vel, rot, dir, health, headCount, you, camera });
let { pos, vel, rot, dir, health, headCount, you, camera, ticks } = entity;
entList.push({ pos, vel, rot, dir, health, headCount, you, camera, ticks });
}
if (entList.length == 0) return;