Add backward move to lance; fix variable name; rearrange challenge list columns.
This commit is contained in:
parent
46db616ba5
commit
52c8735e27
@ -682,6 +682,7 @@ GAME.Const = {
|
|||||||
new GAME.PieceMovement()
|
new GAME.PieceMovement()
|
||||||
.add(0)
|
.add(0)
|
||||||
.add(1)
|
.add(1)
|
||||||
|
.add(3)
|
||||||
.add(5),
|
.add(5),
|
||||||
new GAME.PieceMovement()
|
new GAME.PieceMovement()
|
||||||
.add(0)
|
.add(0)
|
||||||
|
@ -838,14 +838,14 @@ const SCENES = {
|
|||||||
buttons.push(UI.button(LANG("decline"), callback_decline));
|
buttons.push(UI.button(LANG("decline"), callback_decline));
|
||||||
|
|
||||||
rows.push([
|
rows.push([
|
||||||
|
UI.text(data.challenges[r].handle),
|
||||||
UI.text(LANG("unranked")),
|
UI.text(LANG("unranked")),
|
||||||
UI.text(data.users[r].handle),
|
|
||||||
buttons,
|
buttons,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
let tbody = UI.table_content(
|
let tbody = UI.table_content(
|
||||||
[ LANG("rank"), LANG("handle"), "" ],
|
[ LANG("handle"), LANG("rank"), "" ],
|
||||||
rows,
|
rows,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user