From 10aa79366af21becbb14f309533fc8c36bbea034 Mon Sep 17 00:00:00 2001 From: yukirij Date: Sun, 18 Aug 2024 02:07:49 -0700 Subject: [PATCH] Restore movement hints on hover hints. --- www/js/interface.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/interface.js b/www/js/interface.js index 34a25a5..a9a85f0 100644 --- a/www/js/interface.js +++ b/www/js/interface.js @@ -391,7 +391,7 @@ const INTERFACE = { // Draw tile content if(piece !== null) { // Draw border hints - if(!is_hover && hover_state == 0) { draw.hints(piece); } + if(!is_hover) { draw.hints(piece); } // Draw piece icon if(piece.promoted) { ctx.drawImage(GAME_ASSET.Image.Promote, -icon_radius, -icon_radius, icon_radius * 2., icon_radius * 2.); }