mirror of
https://github.com/evennia/evennia.git
synced 2026-04-07 00:45:22 +02:00
Fix bug in module-prototype loading. Resolve #2195.
This commit is contained in:
parent
14bc59bee0
commit
46544805a4
1 changed files with 2 additions and 1 deletions
|
|
@ -167,7 +167,8 @@ for mod in settings.PROTOTYPE_MODULES:
|
|||
if "prototype_locks" in prot
|
||||
else "use:all();edit:false()"
|
||||
),
|
||||
"prototype_tags": list(set(make_iter(prot.get("prototype_tags", [])) + ["module"])),
|
||||
"prototype_tags": list(set(list(
|
||||
make_iter(prot.get("prototype_tags", []))) + ["module"])),
|
||||
}
|
||||
)
|
||||
_MODULE_PROTOTYPES[actual_prot_key] = prot
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue