Aaron Suen d32a2c856c Build mod summary list automatically
Instead of maintaining the short description of each sub-mod
manually in a giant README file, distribute the short descriptions
into each relevant mod, and then build the README listings
automatically at deploy time.

This should:
- Make it harder to forget to add/remove mods in the list
- Prevent them from being out of alphabetical order
- Ensure each mod has a description for in-menu use
2023-06-20 07:30:35 -04:00
..
2020-05-24 20:25:43 -04:00
2023-06-20 07:30:35 -04:00
2020-05-24 20:25:43 -04:00

------------------------------------------------------------------------

Allows admins to define a set of "roles" for easier player privilege
management.

The role command (re)defines a role as a set of privs:
	/role <role> priv,priv,priv
Each priv can be a primitive priv or a role name.  Role names
will be expanded at the time they're applied, so redefining a role
that other roles depend on may affect all dependant roles.

There are a few special built-in roles:
	all - all privileges
	default - the set of privileges assigned to new players
The built-in roles cannot be redefined.

/grant and /grantme can be used to grant roles the same as privs.
First, all roles are expanded into their privs.

Revoking a role effectively revokes all privs it grants.

------------------------------------------------------------------------