Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YoctoProductions committed Dec 24, 2024
1 parent 4ea0260 commit ef256ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/game/entities/mobs/Chimera.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ChimeraMob extends BaseEntity {
}

createSprite() {
this.body = this.game.add.sprite(0, 0, 'chimera').setOrigin(0.5, 0.5);
this.body = this.game.add.sprite(0, 0, 'chimera').setOrigin(0.5, 0.5).setDepth(28)
this.body.setScale(this.isAngry ? this.flyingScale : this.baseScale);
this.healthBar = new Health(this, { offsetY: -this.shape.radius - 40 });
this.container = this.game.add.container(this.shape.x, this.shape.y, [this.body]);
Expand Down

0 comments on commit ef256ab

Please sign in to comment.