From 93bf01c737ef5660596c2023bd77dd32cf33a24a Mon Sep 17 00:00:00 2001 From: Dimitri Date: Sun, 10 Oct 2021 13:28:27 -0600 Subject: [PATCH] issue #2262 -- add docstring for location arg --- evennia/utils/create.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/utils/create.py b/evennia/utils/create.py index b2b3749327..78a0739171 100644 --- a/evennia/utils/create.py +++ b/evennia/utils/create.py @@ -73,8 +73,8 @@ def create_object( typeclass (class or str): Class or python path to a typeclass. key (str): Name of the new object. If not set, a name of `#dbref` will be set. - home (Object or str): Obj or #dbref to use as the object's - home location. + location (Object or str): Obj or #dbref to use as the location of the new object. + home (Object or str): Obj or #dbref to use as the object's home location. permissions (list): A list of permission strings or tuples (permstring, category). locks (str): one or more lockstrings, separated by semicolons. aliases (list): A list of alternative keys or tuples (aliasstring, category).