mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Some cleanup and updates of the object.py file.
This commit is contained in:
parent
f2f6c32d3f
commit
50b072170f
1 changed files with 2 additions and 2 deletions
|
|
@ -101,7 +101,7 @@ class Object(TypeClass):
|
|||
attribute_name=None, use_nicks=True, location=None,
|
||||
quiet=False, exact=False)
|
||||
execute_cmd(raw_string)
|
||||
msg(message, **kwargs)
|
||||
msg(text=None, from_obj=None, sessid=0, **kwargs)
|
||||
msg_contents(message, exclude=None, from_obj=None, **kwargs)
|
||||
move_to(destination, quiet=False, emit_to_obj=None,
|
||||
use_destination=True, to_none=False)
|
||||
|
|
@ -341,7 +341,7 @@ class Object(TypeClass):
|
|||
default to self.sessid or from_obj.sessid.
|
||||
"""
|
||||
|
||||
self.dbobj.msg(text=text, **kwargs)
|
||||
self.dbobj.msg(text=text, from_obj=from_obj, sessid=sessid, **kwargs)
|
||||
|
||||
def msg_contents(self, text=None, exclude=None, from_obj=None, **kwargs):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue