We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SPEFFZ_DLB_INDEX
1 parent 8ee50eb commit bf7d667Copy full SHA for bf7d667
src/rs/scramble/puzzles/big_cubes.rs
@@ -37,6 +37,8 @@ use super::{
37
#[allow(non_upper_case_globals)]
38
const BIG_CUBES_MINIMUM_OPTIMAL_SOLUTION_MOVE_COUNT: MoveCount = MoveCount(2);
39
40
+const SPEFFZ_DLB_INDEX: u8 = 6;
41
+
42
pub struct BigCubeScrambleInfo {
43
kpuzzle: KPuzzle,
44
size: u32,
@@ -85,7 +87,7 @@ impl BigCubeScrambleInfo {
85
87
let orbit_is_CORNERS = orbit_info.num_pieces == 8;
86
88
89
for i in 0..orbit_info.num_pieces {
- if orbit_is_CORNERS && (i == 6) {
90
+ if orbit_is_CORNERS && (i == SPEFFZ_DLB_INDEX) {
91
continue;
92
}
93
mask.set_orientation_with_mod(
0 commit comments