mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
11 lines
245 B
OpenEdge ABL
11 lines
245 B
OpenEdge ABL
|
// This is just to emulate some historic Nemesis efuns
|
||
|
// used only when in MUD mode
|
||
|
|
||
|
// simplification - has to check ONCE_INTERACTIVE TODO
|
||
|
int userp(object u) {
|
||
|
if (!u) u = this_player();
|
||
|
if (objectp(u)) return interactive(u);
|
||
|
return 0;
|
||
|
}
|
||
|
|