mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Merge pull request #3499 from chiizujin/room_create
Fix room creation showing room name instead of typeclass path
This commit is contained in:
commit
dcc4dce7e1
1 changed files with 1 additions and 1 deletions
|
|
@ -1028,7 +1028,7 @@ class CmdDig(ObjManipCommand):
|
|||
if new_room.aliases.all():
|
||||
alias_string = " (%s)" % ", ".join(new_room.aliases.all())
|
||||
|
||||
room_string = f"Created room {new_room}({new_room.dbref}){alias_string} of type {new_room}."
|
||||
room_string = f"Created room {new_room}({new_room.dbref}){alias_string} of type {new_room.typeclass_path}."
|
||||
|
||||
# create exit to room
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue