Autodump reports the action taken properly.

develop
Petr Mrázek 2011-05-08 03:45:58 +02:00
parent 4f69e550e3
commit d6cd85cc1a
1 changed files with 8 additions and 1 deletions

@ -201,7 +201,14 @@ int main (int argc, char * argv[])
Maps->WriteDirtyBit(cx/16, cy/16, cz, true);
}
DF->Detach();
cout << "Done. " << dumped_total << " items quickdumped." << endl;
if(!destroy)
{
cout << "Done. " << dumped_total << " items quickdumped." << endl;
}
else
{
cout << "Done. " << dumped_total << " items marked for destruction." << endl;
}
#ifndef LINUX_BUILD
cout << "Press any key to continue" << endl;
cin.ignore();