Cleaned up all commands of the player type to correctly relay their msg-data only to their assigned session.

This commit is contained in:
Griatch 2013-04-12 13:59:15 +02:00
parent a6544f2848
commit b58a464409
4 changed files with 43 additions and 44 deletions

View file

@ -25,7 +25,7 @@ _DA = object.__delattr__
# to *in-game* safety (if you can edit typeclasses you have
# full access anyway), so no protection against changing
# e.g. 'locks' or 'permissions' should go here.
PROTECTED = ('id', 'dbobj', 'db', 'ndb', 'objects', 'typeclass',
PROTECTED = ('id', 'dbobj', 'db', 'ndb', 'objects', 'typeclass', 'db_player', 'player',
'attr', 'save', 'delete', 'db_model_name','attribute_class',
'typeclass_paths')