Implemented working MCCP (data compression) and MSSP (mud-listing crawler support). Moved all user-level customization modules from gamesrc/world to gamesrc/conf to reduce clutter.
This commit is contained in:
parent
a4f8019c4a
commit
fb78758356
15 changed files with 465 additions and 48 deletions
17
game/gamesrc/conf/at_initial_setup.py
Normal file
17
game/gamesrc/conf/at_initial_setup.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
"""
|
||||
Custom at_initial_setup method. This allows you to hook special
|
||||
modifications to the initial server startup process. Note that this
|
||||
will only be run once - when the server starts up for the very first
|
||||
time! It is called last in the startup process and can thus be used to
|
||||
overload things that happened before it.
|
||||
|
||||
The module must contain a global function at_initial_setup(). This
|
||||
will be called without arguments. Note that tracebacks in this module
|
||||
will be QUIETLY ignored, so make sure to check it well to make sure it
|
||||
does what you expect it to.
|
||||
|
||||
This module is selected by settings.AT_INITIAL_SETUP_HOOK_MODULE.
|
||||
"""
|
||||
|
||||
def at_initial_setup():
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue