mirror of
https://github.com/evennia/evennia.git
synced 2026-03-24 00:36:30 +01:00
Fixed a bug in the @link command.
This commit is contained in:
parent
f54e6b22c1
commit
dff64215a2
1 changed files with 1 additions and 1 deletions
|
|
@ -844,7 +844,7 @@ class CmdLink(MuxCommand):
|
|||
if dest:
|
||||
string = "%s is an exit to %s." % (obj.name, dest.name)
|
||||
else:
|
||||
string = "%s is not an exit. Its home location is %s." % obj.home
|
||||
string = "%s is not an exit. Its home location is %s." % (obj.name, obj.home)
|
||||
|
||||
else:
|
||||
# We gave the command @link 'obj = ' which means we want to
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue