blob: 93a32ae7e719475ac67f83d20c71047656e15761 [file] [log] [blame]
/* This sefun is to provide a replacement for the efun query_idle().
* Feel free to add it to your mudlibs, if you have much code relying on that.
*/
#if ! __EFUN_DEFINED__(query_idle)
#include <interactive_info.h>
int query_idle(object ob)
{
return efun::interactive_info(ob, II_IDLE);
}
#endif