Add PROTOTYPE_MODULES to settings_default, making use of world/prototypes.py already being defined.

This commit is contained in:
Griatch 2016-09-13 18:03:50 +02:00
parent e6e61aa5e6
commit 5a5884f6da
3 changed files with 12 additions and 7 deletions

View file

@ -305,6 +305,8 @@ LOCK_FUNC_MODULES = ("evennia.locks.lockfuncs", "server.conf.lockfuncs",)
# will be loaded in order, meaning functions in later modules may overload
# previous ones if having the same name.
INPUT_FUNC_MODULES = ["evennia.server.inputfuncs", "server.conf.inputfuncs"]
# Modules that contain prototypes for use with the spawner mechanism.
PROTOTYPE_MODULES = ["world.prototypes"]
# Module holding settings/actions for the dummyrunner program (see the
# dummyrunner for more information)
DUMMYRUNNER_SETTINGS_MODULE = "evennia.server.profiling.dummyrunner_settings"