1
0
Fork 0
mirror of git://git.psyced.org/git/psyced synced 2024-07-31 08:46:07 +00:00
psyced/place/membersonly.c

12 lines
317 B
C

/* owned room which is accessible by members only
* the members are managed as aides of the room */
#define PLACE_OWNED ADMINISTRATORS
// TODO: could use a simplification...
#ifdef PLACE_OWNED
#define REQUEST_ENTER return objectp(source) && qOwner(source -> qName()) || qAide(source);
#endif
#include <place.gen>