Only warn user when needed.

develop
Petr Mrázek 2011-07-06 12:52:16 +02:00
parent 8318213b97
commit 4cd80fa5d4
1 changed files with 2 additions and 1 deletions

@ -177,7 +177,8 @@ DFhackCExport command_result reveal(DFHack::Core * c, std::vector<std::string> &
}
c->Resume();
dfout << "Map revealed." << std::endl;
dfout << "Unpausing can unleash the forces of hell, so it has beed temporarily disabled!" << std::endl;
if(!no_hell)
dfout << "Unpausing can unleash the forces of hell, so it has beed temporarily disabled!" << std::endl;
dfout << "Run 'unreveal' to revert to previous state." << std::endl;
return CR_OK;
}