示例#1
0
/// thread guarded variant for call from event system
void HandleCorpsesErase(void*)
{
    sDatabase.ThreadStart();                             

    CorpsesErase();

    sDatabase.ThreadEnd();                                 
}
示例#2
0
/// Comment me
/// \todo What is CorpsesErase for?
void CliCorpses(char*,pPrintf)
{
    CorpsesErase();
}
示例#3
0
/// not thread guarded variant for call from other thread
void CorpsesErase()
{
    CorpsesErase(CORPSE_BONES, 20*MINUTE);
    CorpsesErase(CORPSE_RESURRECTABLE,3*DAY);
}
示例#4
0
/// not thread guarded variant for call from other thread
void CorpsesErase()
{
    CorpsesErase(true, 20*MINUTE);
    CorpsesErase(false,3*DAY);
}