1
0
Fork 0
mirror of git://git.psyced.org/git/psyced synced 2024-08-15 03:25:10 +00:00
psyced/world/drivers/nemesis/nememul.i

11 lines
245 B
OpenEdge ABL
Raw Normal View History

// 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;
}