mirror of
https://github.com/evennia/evennia.git
synced 2026-04-07 00:45:22 +02:00
A fix to extended_room, for when used as default mixed with other room types.
This commit is contained in:
parent
ae65438c9b
commit
55634de123
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ class ExtendedRoom(Room):
|
|||
|
||||
def return_appearance(self, looker):
|
||||
"This is called when e.g. the look command wants to retrieve the description of this object."
|
||||
raw_desc = self.db.raw_desc
|
||||
raw_desc = self.db.raw_desc or ""
|
||||
update = False
|
||||
|
||||
# get current time and season
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue