You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in age3.csv, line 25, change it to:
,TTTPG,purple,Shipowners Guild,"V brown,grey,purple 1",,,,,,,
in cards.php, line 276. get rid of 'brown,grey,blue' case and change default case to:
// $mult cards for each $color card played
default:
foreach (explode(',', $color) as $subcolor) {
foreach ($pl->cardsPlayed as $c) {
if ($c->getColor() == $subcolor)
$total += $mult;
}
}
break;
The text was updated successfully, but these errors were encountered:
in age3.csv, line 25, change it to:
,TTTPG,purple,Shipowners Guild,"V brown,grey,purple 1",,,,,,,
in cards.php, line 276. get rid of 'brown,grey,blue' case and change default case to:
// $mult cards for each $color card played
default:
foreach (explode(',', $color) as $subcolor) {
foreach ($pl->cardsPlayed as $c) {
if ($c->getColor() == $subcolor)
$total += $mult;
}
}
break;
The text was updated successfully, but these errors were encountered: