moss-n-puddles/commands
Howard Abrams ec1881a7cf Rooms can trigger actions like Puppets
Including sitting and standing.
2025-08-16 22:43:56 -07:00
..
__init__.py
command.py Refactored the eat/drink commands 2025-07-13 08:24:30 -07:00
consumables.py We can make potions now! 2025-07-21 18:11:09 -07:00
default_cmdsets.py Feed command is now global 2025-08-07 22:18:52 -07:00
everyone.py Fix numerous bugs 2025-08-12 13:55:18 -07:00
feedables.py Add 'pet' command for friendly pets. 2025-04-21 21:55:13 -07:00
hint.py Fix a few more minor bugs 2025-08-06 22:40:05 -07:00
misc.py Rooms can trigger actions like Puppets 2025-08-16 22:43:56 -07:00
pets.py Fix bug in hint system and petting friendly pets 2025-07-29 11:48:53 -07:00
README.md
sittables.py
wizards.py Fix the automated gift from puppets 2025-07-15 22:58:17 -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.