Skip to content

Commit

Permalink
Merge branch 'market-memo' of https://github.com/BibliothecaDAO/eternum
Browse files Browse the repository at this point in the history
… into market-memo
  • Loading branch information
ponderingdemocritus committed Dec 15, 2024
2 parents a0ad4c6 + bdc50a8 commit 8b0fbae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/src/three/scenes/HexagonScene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,11 @@ export abstract class HexagonScene {
this.updateLights();
this.updateHighlightPulse();
this.biomeModels.forEach((biome) => {
biome.updateAnimations(deltaTime);
try {
biome.updateAnimations(deltaTime);
} catch (error) {
console.error(`Error updating biome animations:`, error);
}
});
}

Expand Down

0 comments on commit 8b0fbae

Please sign in to comment.