Chess: Tweak notation spacing

This commit is contained in:
Wuzzy 2023-07-15 16:54:58 +02:00
parent 2ef3d97c7a
commit 4bfec061bb

View File

@ -1043,8 +1043,8 @@ local function get_moves_formstring(meta)
if curPlayerIsWhite then if curPlayerIsWhite then
move_no = move_no + 1 move_no = move_no + 1
-- Add move number (e.g. " 3.") -- Add move number (e.g. "3.")
moves_out = moves_out .. string.format("% d.", move_no) .. "," moves_out = moves_out .. string.format("%d.", move_no) .. ","
end end
local betweenCoordsSymbol = "" -- to be inserted between source and destination coords local betweenCoordsSymbol = "" -- to be inserted between source and destination coords
-- dash for normal moves, × for capturing moves -- dash for normal moves, × for capturing moves
@ -1055,7 +1055,7 @@ local function get_moves_formstring(meta)
elseif pieceTo == "" and pieceFrom:sub(11,14) == "pawn" and from_x ~= to_x then elseif pieceTo == "" and pieceFrom:sub(11,14) == "pawn" and from_x ~= to_x then
-- 'en passant' capture -- 'en passant' capture
betweenCoordsSymbol = "×" betweenCoordsSymbol = "×"
enPassantSymbol = " e. p." enPassantSymbol = " e.p."
end end
---- Add halfmove of current player ---- Add halfmove of current player