evennia/evennia/game_template/commands
BlauFeuer f8b279d7bb Adjust docstring to resolve #1300
Also realigns code indent to multiple of 4 after `# ` is removed to uncomment
2017-04-06 19:12:40 -04:00
..
__init__.py Move game_template into evennia package. Update setup.py and bin/evennia 2015-01-16 08:36:46 -06:00
command.py Adjust docstring to resolve #1300 2017-04-06 19:12:40 -04:00
default_cmdsets.py More docstring 2015-03-09 18:45:17 +01:00
README.md Added README.md files to the game_template directories. 2015-01-17 00:04:05 +01:00

commands/

This folder holds modules for implementing one's own commands and command sets. All the modules' classes are essentially empty and just imports the default implementations from Evennia; so adding anything to them will start overloading the defaults.

You can change the organisation of this directory as you see fit, just remember that if you change any of the default command set classes' locations, you need to add the appropriate paths to server/conf/settings.py so that Evennia knows where to find them. Also remember that if you create new sub directories you must put (optionally empty) __init__.py files in there so that Python can find your modules.