From: Benjamin Auder Date: Tue, 16 Feb 2021 23:08:46 +0000 (+0100) Subject: Better notation [Rugby] X-Git-Url: https://git.auder.net/?p=vchess.git;a=commitdiff_plain;h=1ec34bc6c76efdda6ff4d4e0e213840d8efa2a8a Better notation [Rugby] --- diff --git a/client/src/variants/Rugby.js b/client/src/variants/Rugby.js index bbe25cb7..d802ca1a 100644 --- a/client/src/variants/Rugby.js +++ b/client/src/variants/Rugby.js @@ -63,4 +63,8 @@ export class RugbyRules extends ChessRules { return "1/2"; } + getNotation(move) { + return V.CoordsToSquare(move.start) + V.CoordsToSquare(move.end); + } + };