mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Merge pull request #3518 from InspectorCaracal/patch-24
Fix `GlobalScriptsContainer` scripts attribute reference
This commit is contained in:
commit
698b65f580
1 changed files with 1 additions and 1 deletions
|
|
@ -244,7 +244,7 @@ class GlobalScriptContainer(Container):
|
|||
"""
|
||||
if not self.loaded:
|
||||
self.load_data()
|
||||
return self.scripts.values()
|
||||
return list(self.loaded_data.values())
|
||||
|
||||
|
||||
# Create all singletons
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue