mirror of
https://github.com/evennia/evennia.git
synced 2026-03-17 05:16:31 +01:00
Fixed a bug in object manager.
This commit is contained in:
parent
2ee9e62336
commit
1be49e7bea
2 changed files with 13 additions and 8 deletions
|
|
@ -17,7 +17,7 @@ they control by simply linking to a new object's user property.
|
|||
|
||||
from django.conf import settings
|
||||
from src.typeclasses.models import TypeclassBase
|
||||
from src.objects.manager import ObjectTypeclassManager
|
||||
from src.objects.manager import ObjectManager
|
||||
from src.objects.models import ObjectDB
|
||||
from src.commands import cmdset, command
|
||||
from src.utils.logger import log_depmsg
|
||||
|
|
@ -40,7 +40,7 @@ class Object(ObjectDB):
|
|||
|
||||
"""
|
||||
__metaclass__ = TypeclassBase
|
||||
objects = ObjectTypeclassManager()
|
||||
objects = ObjectManager()
|
||||
|
||||
# __init__ is only defined here in order to present docstring to API.
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue