Fix duplicate alt button position.

This commit is contained in:
yukirij 2025-02-05 15:21:48 -08:00
parent 2a0f39b17d
commit 911a1590e4

View File

@ -273,7 +273,7 @@ const INTERFACE = {
let tx = (2 * (hx > 0)) + (2 * (hx > 1)); let tx = (2 * (hx > 0)) + (2 * (hx > 1));
let tile = tile_set + tx + hy; let tile = tile_set + tx + hy;
INTERFACE_DATA.hover = new INTERFACE.Selection(1, tile, hex); INTERFACE_DATA.hover = new INTERFACE.Selection(1, tile, hex);
} else if(hx == 1 && hy == 3) { } else if(hx == 1 && hy == 3 && tile_set == 7) {
INTERFACE_DATA.hover = new INTERFACE.Selection(2, 0, hex); INTERFACE_DATA.hover = new INTERFACE.Selection(2, 0, hex);
} }
} }