Skip to content

Commit

Permalink
Fix output (include / between turns)
Browse files Browse the repository at this point in the history
  • Loading branch information
penteract committed Mar 20, 2021
1 parent 70050a8 commit 4e5b2d6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion DataInterfaceConsoleTest/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ private static void DoDataDump(DataInterface di)
Console.Write($"\r\n{turnNumber}.");
lastRun+=$"\r\n{turnNumber}.";
}
else Console.Write($"/ ");
else{
Console.Write($"/ ");
lastRun+=$"/ ";
}
}
if (movetype==0){
Console.Write($"({mem.moveSourceL}T{mem.moveSourceT-firstT}){board.Pieces[mem.moveSourceX*board.width+mem.moveSourceY].Notation()}{(char)(97+mem.moveSourceX)}{1+mem.moveSourceY}{(char)(97+mem.moveDestX)}{1+mem.moveDestY} ");
Expand Down

0 comments on commit 4e5b2d6

Please sign in to comment.