From 9cfa9a0b8a254e06ecbd83da48771a0e41a33286 Mon Sep 17 00:00:00 2001 From: iainp5 Date: Thu, 2 Jan 2025 11:23:51 +0000 Subject: Fix events after 110 added to played_card panel --- play.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'play.js') diff --git a/play.js b/play.js index 2111f0c..2b087d1 100644 --- a/play.js +++ b/play.js @@ -892,7 +892,7 @@ function on_update() { ui.played_card.replaceChildren() if (view.played_card > 0) ui.played_card.appendChild(ui.cards[view.played_card]) - if (view.vm_event > 0) + if (view.vm_event > 0 && view.vm_event < 111) ui.played_card.appendChild(ui.cards[view.vm_event]) if (view.power_card_1 > 0) ui.played_card.appendChild(ui.power_cards[view.power_card_1]) -- cgit v1.2.3