Skip to content

Commit

Permalink
Avoid implying that z follows B in FMC solutions
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregor Billing committed Dec 30, 2019
1 parent 225c05c commit 64cb3bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,8 @@ open class FmcSolutionSheet(request: ScrambleRequest, globalTitle: String?, loca
val direction = arrayOf(Translate.translate("fmc.clockwise", locale), Translate.translate("fmc.counterClockwise", locale), Translate.translate("fmc.double", locale))

val directionModifiers = arrayOf("", "'", "2")
val moves = arrayOf("F", "R", "U", "B", "L", "D")
val rotations = arrayOf("", "x", "y", "z", "", "")
val moves = arrayOf("R", "U", "F", "L", "D", "B")
val rotations = arrayOf("x", "y", "z", "", "", "")
val movesCell = Array(movesType.size) { Array<Array<String?>>(direction.size) { arrayOfNulls(moves.size) } }

// Face moves.
Expand Down

0 comments on commit 64cb3bb

Please sign in to comment.