Some bugfixes and cleanup.
This commit is contained in:
parent
502ebff1a2
commit
b091cde574
4 changed files with 20 additions and 16 deletions
|
|
@ -39,6 +39,7 @@ PERMS = [
|
|||
'typeclass',
|
||||
'debug',
|
||||
'puppet',
|
||||
'typeclass',
|
||||
|
||||
'batchcommands',
|
||||
'batchcodes',
|
||||
|
|
@ -79,6 +80,7 @@ GROUPS = {
|
|||
'reload',
|
||||
'service',
|
||||
'perm',
|
||||
'typeclass',
|
||||
'batchcommands',
|
||||
'batchcodes']],
|
||||
|
||||
|
|
|
|||
|
|
@ -417,7 +417,7 @@ def create_player(name, email, password,
|
|||
new_user = User.objects.create_user(name, email, password)
|
||||
|
||||
# create the associated Player for this User, and tie them together
|
||||
new_player = PlayerDB(db_key=name, user=new_user, db_typeclass_path=typeclass)
|
||||
new_player = PlayerDB(db_key=name, user=new_user)
|
||||
new_player.save()
|
||||
|
||||
# assign mud permissions
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue