Пример #1
0
/**
 * Runs muckevents
 *
 * This will run timequeue events, dumps, and cleanups.  While it tries
 * each function, the functions will only do something if something is
 * ready to happen.  This is safe to run whenever, but next_muckevent_time
 * will return the time until this will actually do something.
 *
 * @see next_muckevent_time
 */
void
next_muckevent(void)
{
    next_timequeue_event();
    check_dump_time();
    check_clean_time();
}
Пример #2
0
void
next_muckevent (void)
{
    next_timequeue_event();
    check_dump_time();
    check_clean_time();
#ifdef RWHO
    check_rwho_time();
#endif
#ifdef MUD
    check_mud_time();
    check_mob_time();
#endif
}