From: Benjamin Auder Date: Tue, 4 Dec 2018 23:06:07 +0000 (+0100) Subject: Add final FEN information to the PGN X-Git-Url: https://git.auder.net/?p=vchess.git;a=commitdiff_plain;h=04449c9757e5a39628dcefccdc7be5f95c068fcd Add final FEN information to the PGN --- diff --git a/public/javascripts/base_rules.js b/public/javascripts/base_rules.js index 07ff7150..79301f95 100644 --- a/public/javascripts/base_rules.js +++ b/public/javascripts/base_rules.js @@ -1142,7 +1142,8 @@ class ChessRules pgn += '[Date "' + d.getFullYear() + '-' + (d.getMonth()+1) + '-' + d.getDate() + '"]
'; pgn += '[White "' + (mycolor=='w'?'Myself':opponent) + '"]
'; pgn += '[Black "' + (mycolor=='b'?'Myself':opponent) + '"]
'; - pgn += '[Fen "' + fenStart + '"]
'; + pgn += '[FenStart "' + fenStart + '"]
'; + pgn += '[Fen "' + this.getFen() + '"]
'; pgn += '[Result "' + score + '"]

'; // Standard PGN