Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswp committed Sep 12, 2023
2 parents d507d24 + 624963a commit 4a346ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render/HexRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class HexRenderer extends Container {
if (this.tile.unlocked) return;
this.hovering = true;
// If hidden, act like a blank tile (index 0)
this.gridRenderer.updateHover(this.hidden ? 0 : tile.groupIndex, true);
this.gridRenderer.updateHover(this.hidden ? null : tile.groupIndex, true);
this.gridRenderer.renderer.onHoverChanged.emit(tile.id);
this.refresh();
}
Expand Down

0 comments on commit 4a346ed

Please sign in to comment.