mirror of
https://github.com/evennia/evennia.git
synced 2026-04-01 13:37:17 +02:00
Big re-organization of command functions. Introduced the commands directory to hold command modules. This will make it easier to sub-divide stuff as we pile on more commands, and for dropping in new optional command modules.
This commit is contained in:
parent
a10df7ec6b
commit
0e9732d49c
17 changed files with 535 additions and 527 deletions
|
|
@ -1,6 +1,5 @@
|
|||
from traceback import format_exc
|
||||
import time
|
||||
import sys
|
||||
import time, sys
|
||||
|
||||
from twisted.application import internet, service
|
||||
from twisted.internet import protocol, reactor, defer
|
||||
|
|
@ -96,8 +95,8 @@ class EvenniaService(service.Service):
|
|||
For changes to the scheduler, server, or session_mgr modules, a cold
|
||||
restart is needed.
|
||||
"""
|
||||
reload_list = ['ansi', 'cmdhandler', 'commands_comsys', 'commands_general',
|
||||
'commands_privileged', 'commands_unloggedin', 'defines_global',
|
||||
reload_list = ['ansi', 'cmdhandler', 'commands.comsys', 'commands.general',
|
||||
'commands.privileged', 'commands.unloggedin', 'defines_global',
|
||||
'events', 'functions_db', 'functions_general', 'functions_comsys',
|
||||
'functions_help', 'gameconf', 'session', 'apps.objects.models',
|
||||
'apps.helpsys.models', 'apps.config.models']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue