moss-n-puddles/commands
Howard Abrams 37f3e8d479 Tea and teacups.
Dabbler's room will produce a tea cup for each person.

A teapot can make different types of teas, or even just a random one.
2025-02-02 00:02:49 -08:00
..
__init__.py In the beginning was a tree... 2025-01-22 07:58:32 -08:00
command.py In the beginning was a tree... 2025-01-22 07:58:32 -08:00
default_cmdsets.py Tea and teacups. 2025-02-02 00:02:49 -08:00
drinkables.py Tea and teacups. 2025-02-02 00:02:49 -08:00
feedables.py Adding dark rooms 2025-01-31 22:37:01 -08:00
lighting.py Adding dark rooms 2025-01-31 22:37:01 -08:00
README.md In the beginning was a tree... 2025-01-22 07:58:32 -08:00
sittables.py In the beginning was a tree... 2025-01-22 07:58:32 -08: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.