Added serversession configurability and some other cleanup.

This commit is contained in:
Griatch 2015-01-07 18:37:27 +01:00
parent 2c46ede247
commit c2e15f33a3
4 changed files with 51 additions and 14 deletions

View file

@ -2,14 +2,15 @@
Server plugin services
This plugin module can define user-created services for the Server to start.
This plugin module can define user-created services for the Server to
start.
This module must handle all imports and setups required to start a twisted
service (see examples in src/server/server.py). It must also contain a
function start_plugin_services(application). Evennia will call this function
with the main Server application (so your services can be added to it). The
function should not return anything. Plugin services are started last in
the Server startup process.
This module must handle all imports and setups required to start a
twisted service (see examples in evennia.server.server). It must also
contain a function start_plugin_services(application). Evennia will
call this function with the main Server application (so your services
can be added to it). The function should not return anything. Plugin
services are started last in the Server startup process.
"""