X-Git-Url: https://git.auder.net/?p=xogo.git;a=blobdiff_plain;f=variants%2FDice%2Fclass.js;fp=variants%2FDice%2Fclass.js;h=02e4f6d2a9fc2597a42d338bd286bd812cb2e4f9;hp=8c3eed4699dc0c6e9f890c084ba490d4987b13d4;hb=7fbcb53de45ba7b7aed99d6087928779713810b1;hpb=d01282a527e60af95f2a71deee1fbac9c0dd26be diff --git a/variants/Dice/class.js b/variants/Dice/class.js index 8c3eed4..02e4f6d 100644 --- a/variants/Dice/class.js +++ b/variants/Dice/class.js @@ -54,7 +54,8 @@ export default class DiceRules extends ChessRules { this.afterPlay = (move_s, newTurn, ops) => { // Movestack contains only one move: move_s[0].toplay = this.getRandomPiece(this.turn); - super.displayMessage(this.message, move_s[0].toplay); + super.displayMessage( + this.message, "To play: " + move_s[0].toplay.toUpperCase()); o.afterPlay(move_s, newTurn, ops); }; } @@ -64,7 +65,7 @@ export default class DiceRules extends ChessRules { this.toplay = fenParsed.toplay; this.message = document.createElement("div"); C.AddClass_es(this.message, "piece-text"); - this.message.innerHTML = this.toplay; + this.message.innerHTML = "To play: " + this.toplay.toUpperCase(); let container = document.getElementById(this.containerId); container.appendChild(this.message); } @@ -101,7 +102,8 @@ export default class DiceRules extends ChessRules { playReceivedMove(moves, callback) { this.toplay = moves[0].toplay; //only one move - super.displayMessage(this.message, this.toplay); + super.displayMessage( + this.message, "To play: " + this.toplay.toUpperCase()); super.playReceivedMove(moves, callback); }