Fix sethome's help file
This commit is contained in:
parent
5a83d533a5
commit
8049112186
1 changed files with 3 additions and 3 deletions
|
|
@ -1087,7 +1087,7 @@ class CmdSetHome(CmdLink):
|
||||||
set an object's home location
|
set an object's home location
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
@home <obj> [= <home_location>]
|
@sethome <obj> [= <home_location>]
|
||||||
|
|
||||||
The "home" location is a "safety" location for objects; they
|
The "home" location is a "safety" location for objects; they
|
||||||
will be moved there if their current location ceases to exist. All
|
will be moved there if their current location ceases to exist. All
|
||||||
|
|
@ -1098,13 +1098,13 @@ class CmdSetHome(CmdLink):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
key = "@sethome"
|
key = "@sethome"
|
||||||
locks = "cmd:perm(@home) or perm(Builder)"
|
locks = "cmd:perm(@sethome) or perm(Builder)"
|
||||||
help_category = "Building"
|
help_category = "Building"
|
||||||
|
|
||||||
def func(self):
|
def func(self):
|
||||||
"""implement the command"""
|
"""implement the command"""
|
||||||
if not self.args:
|
if not self.args:
|
||||||
string = "Usage: @home <obj> [= <home_location>]"
|
string = "Usage: @sethome <obj> [= <home_location>]"
|
||||||
self.caller.msg(string)
|
self.caller.msg(string)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue