diff --git a/packages/entity/list/index.js b/packages/entity/list/index.js index d4748ae..068cd68 100644 --- a/packages/entity/list/index.js +++ b/packages/entity/list/index.js @@ -47,7 +47,9 @@ export class EntityList extends decorate(class {}) { entity.hydrate().then(() => { this.addEntity(entity); }); - }); + }).catch( + (error) => console.error("Error creating '%O' from sync packet: %o", packet.data, error) + ); } if (packet instanceof SynchronizedDestroyPacket) { const uuid = packet.data.synchronized.id;