From 0be58058b42eacc4f76dacb3c2516ee18877cdd2 Mon Sep 17 00:00:00 2001 From: Brian Fertig Date: Tue, 23 Jun 2026 21:41:59 -0600 Subject: [PATCH] Fixed outline issue in Pai Gow --- public/src/games/paigow/PaiGowPokerGame.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/src/games/paigow/PaiGowPokerGame.js b/public/src/games/paigow/PaiGowPokerGame.js index 5259234..719ed77 100644 --- a/public/src/games/paigow/PaiGowPokerGame.js +++ b/public/src/games/paigow/PaiGowPokerGame.js @@ -464,6 +464,7 @@ export default class PaiGowPokerGame extends Phaser.Scene { hideHandSetPanel() { this.panelVisible = false; this._clearDragHighlights(); + if (this._selRings) { for (const r of this._selRings) r.destroy(); this._selRings = []; } for (const o of this.setPanelGroup) o.setVisible(false); for (const c of this.setCardConts) c.destroy(); this.setCardConts = [];