Fix minor bug
This commit is contained in:
parent
a356b8273c
commit
f7d3e95c7a
2 changed files with 2 additions and 2 deletions
|
|
@ -101,7 +101,7 @@ class Pet(Object):
|
||||||
self.db.hunger_level = max(self.db.hunger_level + amount, 0)
|
self.db.hunger_level = max(self.db.hunger_level + amount, 0)
|
||||||
|
|
||||||
if self.hunger() != curr:
|
if self.hunger() != curr:
|
||||||
self.location.msg_contents(f"|w{self.hunger_appearance()}|n\n")
|
self.location.msg_contents(f"|w{self.hunger_appearance()}|n")
|
||||||
|
|
||||||
def return_appearance(self, looker, **kwargs):
|
def return_appearance(self, looker, **kwargs):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,7 @@ class WriteableBook(Book):
|
||||||
writer.msg("|/<< Pardon the quaint, twentieth-century approach to "
|
writer.msg("|/<< Pardon the quaint, twentieth-century approach to "
|
||||||
"capturing your prose (but this works with all MUD "
|
"capturing your prose (but this works with all MUD "
|
||||||
"clients). Easiest approach: just type your message, hit "
|
"clients). Easiest approach: just type your message, hit "
|
||||||
"the |wReturn|n key, type |g:q|n, and his the "
|
"the |wReturn|n key, type |g:q|n, and hit the "
|
||||||
"|wReturn|n key again...>>|/")
|
"|wReturn|n key again...>>|/")
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue