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