- Added a few cards
- Creature attacks, blocks, is re-ordered in blocking list events
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-07-12 12:27:55 +00:00
parent feedb16eae
commit ab445c9758
19 changed files with 280 additions and 148 deletions
+1 -1
View File
@@ -354,7 +354,7 @@ int TestSuite::assertGame(){
for (int j = 0; j < 4; j++){
MTGGameZone * zone = playerZones[j];
if (zone->nb_cards != endState.playerData[i].zones[j].nbitems){
sprintf(result, "<span class=\"error\">==Card number not the same in %i==</span><br />",j);
sprintf(result, "<span class=\"error\">==Card number not the same in %i==, expected %i, got %i</span><br />",j, endState.playerData[i].zones[j].nbitems, zone->nb_cards);
Log(result);
error++;
return 0;