moss-n-puddles/commands
2025-07-13 08:24:49 -07:00
..
__init__.py
command.py Refactored the eat/drink commands 2025-07-13 08:24:30 -07:00
consumables.py Call 'get' on a producer to return its produce 2025-06-05 22:02:14 -07:00
default_cmdsets.py Fix bug with tutorial. Oops. 2025-07-04 22:37:18 -07:00
everyone.py Add an open and close command 2025-07-13 08:24:49 -07:00
feedables.py
misc.py Fix the lighting of torches and stuff. 2025-07-04 16:26:32 -07:00
pets.py Persist knock and pet commands 2025-05-16 21:53:53 -07:00
README.md
sittables.py
wizards.py Cast prestidigitation spells 2025-06-19 11:26:07 -07: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.