blob: 93a32ae7e719475ac67f83d20c71047656e15761 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001/* This sefun is to provide a replacement for the efun query_idle().
2 * Feel free to add it to your mudlibs, if you have much code relying on that.
3 */
4
5#if ! __EFUN_DEFINED__(query_idle)
6
7#include <interactive_info.h>
8
9int query_idle(object ob)
10{
11 return efun::interactive_info(ob, II_IDLE);
12}
13
14#endif