Switched settings_default to use src/ base modules instead of modules in game/gamesrc/ as default (these will be removed)

This commit is contained in:
Griatch 2012-03-25 17:13:39 +02:00
parent b43fb3156a
commit b2d91d9bb5
2 changed files with 16 additions and 10 deletions

View file

@ -11,11 +11,17 @@ To extend the default command set:
DefaultCmdSet
- import/add commands at the end of DefaultCmdSet's add() method.
To add a new command set
To extend OOC cmdset:
- like default set, but point settings.CMDSET_OOC on your new cmdset.
To extend Unloggedin cmdset:
- like default set, but point settings.CMDSET_UNLOGGEDIN on your new cmdset.
To add a wholly new command set:
- copy this file up one level to gamesrc/commands and name it
something fitting.
- add a new cmdset class
- add it objects with obj.cmdset.add(path.to.the.module.and.class)
- add it to objects e.g. with obj.cmdset.add(path.to.the.module.and.class)
"""