Skip to content

Commit

Permalink
support binary-star; WiP
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomif committed Jan 13, 2024
1 parent b80b817 commit ea5ffb1
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ LOOP:
my $str;
if ( $type eq "card" )
{
$str = $move_rec->{"str"};
$str = "";
$str .= $move_rec->{"str"};
}
elsif ( $type eq "board" )
{
Expand All @@ -191,7 +192,9 @@ LOOP:
}
$foundation_cards[ $move_rec->{"changed_foundation"} ] =
$move_rec->{"foundation_str"};
$str = join( " ", "Foundations:", @foundation_cards ) . "\n";
$str = "";
$str .= "\n";
$str .= join( " ", "Foundations:", @foundation_cards ) . "\n";
$str .= $move_rec->{"str"};
}
else
Expand Down

0 comments on commit ea5ffb1

Please sign in to comment.