mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 23:36:30 +01:00
Cleanups and bug fixes. Fixed the @unlink command and also made it overally more stable. Resolves issue 161. Added more string conversion routines to handle non-ascii variables being stored in an Attribute. Resolves issue 160.
This commit is contained in:
parent
14db4bea4d
commit
7d30b337d9
27 changed files with 873 additions and 1048 deletions
|
|
@ -169,7 +169,7 @@ class LockHandler(object):
|
|||
elif hasattr(self.obj, 'msg'):
|
||||
self.obj.msg(message)
|
||||
else:
|
||||
logger.log_trace("%s: %s" % (self.obj, message))
|
||||
logger.log_errmsg("%s: %s" % (self.obj, message))
|
||||
|
||||
def _parse_lockstring(self, storage_lockstring):
|
||||
"""
|
||||
|
|
@ -230,7 +230,8 @@ class LockHandler(object):
|
|||
|
||||
def add(self, lockstring, log_obj=None):
|
||||
"""
|
||||
Add a new, single lockstring on the form '<access_type>:<functions>'
|
||||
Add a new lockstring on the form '<access_type>:<functions>'. Multiple
|
||||
access types should be separated by semicolon (;).
|
||||
|
||||
If log_obj is given, it will be fed error information.
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue