Skip to content

Commit f5faea9

Browse files
committed
Pigs2: Fix rotating order queues.
1 parent 5e055c0 commit f5faea9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/games/pigs2.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,19 +694,22 @@ export class Pigs2Game extends GameBaseSimultaneous {
694694
for (const [g, u] of glyph2unicode.entries()) {
695695
legend[g] = {
696696
text: u,
697-
colour: "_context_labels"
697+
colour: "_context_labels",
698+
rotate: null,
698699
};
699700
}
700701
// rotation annotation glyphs
701702
legend.nCW = {
702703
text: "\u21b7",
703704
colour: "_context_annotations",
704705
scale: 0.5,
706+
orientation: "vertical",
705707
};
706708
legend.nCCW = {
707709
text: "\u21b6",
708710
colour: "_context_annotations",
709711
scale: 0.5,
712+
orientation: "vertical",
710713
};
711714

712715
// build pieces areas

0 commit comments

Comments
 (0)