mirror of
https://github.com/ChronosX88/psyced.git
synced 2024-11-08 19:41:00 +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;
|
|
}
|
|
|