Skip to content

Commit

Permalink
Update building.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Beakerboy authored Dec 4, 2024
1 parent 33fef97 commit 39ceb08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/building.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class Building {
const mesh = [];
if (this.parts.length > 0) {
this.outerElement.options.building.visible = false;
mesh.push(...this.outerElement.render())
mesh.push(...this.outerElement.render());
for (let i = 0; i < this.parts.length; i++) {
mesh.push(...this.parts[i].render());
}
Expand Down

0 comments on commit 39ceb08

Please sign in to comment.