fix CmdCreate bugs

This commit is contained in:
Cal 2023-12-21 13:07:27 -07:00
parent 7a7416b084
commit e143f47edd
3 changed files with 31 additions and 7 deletions

View file

@ -660,7 +660,13 @@ class CmdCreate(ObjManipCommand):
continue
obj, errors = obj_typeclass.create(
name, caller, home=caller, aliases=aliases, report_to=caller, caller=caller
name,
account=caller.account,
location=caller,
home=caller,
aliases=aliases,
report_to=caller,
caller=caller,
)
if errors:
self.msg(errors)