True transformation: got rid of debug print statements.

develop
expwnent 2013-01-02 19:45:08 -05:00
parent ec024c3b9f
commit 285ee3b399
1 changed files with 0 additions and 2 deletions

@ -78,13 +78,11 @@ void syndromeHandler(color_ostream& out, void* ptr) {
break; break;
} }
} }
out.print("foundIt = %d, raceId = %d, casteId = %d\n", (int32_t)foundIt, raceId, casteId);
if ( !foundIt || raceId == -1 || casteId == -1 ) if ( !foundIt || raceId == -1 || casteId == -1 )
return; return;
unit->enemy.normal_race = raceId; unit->enemy.normal_race = raceId;
unit->enemy.normal_caste = casteId; unit->enemy.normal_caste = casteId;
out.print("Did the thing.\n");
//that's it! //that's it!
} }