mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 13:07:16 +02:00
Fixed the behaviour of some build commands to match that in wiki build tutorial.
This commit is contained in:
parent
96be66828c
commit
03cc4970d0
2 changed files with 14 additions and 7 deletions
|
|
@ -460,7 +460,7 @@ class TypedObject(SharedMemoryModel):
|
|||
def permissions_set(self, value):
|
||||
"Setter. Allows for self.name = value. Stores as a comma-separated string."
|
||||
if is_iter(value):
|
||||
value = ",".join([str(val).strip().lower() for val in value])
|
||||
value = ",".join([str(val).strip() for val in value])
|
||||
self.db_permissions = value
|
||||
self.save()
|
||||
#@permissions.deleter
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue