mirror of
https://github.com/evennia/evennia.git
synced 2026-04-02 14:07:16 +02:00
Things should be working again, minus the web stuff.
This commit is contained in:
parent
322c626295
commit
5249f27074
19 changed files with 44 additions and 38 deletions
|
|
@ -10,9 +10,9 @@ from django.contrib.auth.models import User
|
|||
from django.db.models import Q
|
||||
from django.contrib.contenttypes.models import ContentType
|
||||
|
||||
from apps.config.models import ConfigValue
|
||||
from apps.objects.exceptions import ObjectNotExist
|
||||
from apps.objects.util import object as util_object
|
||||
from src.config.models import ConfigValue
|
||||
from src.objects.exceptions import ObjectNotExist
|
||||
from src.objects.util import object as util_object
|
||||
from src import defines_global
|
||||
|
||||
class ObjectManager(models.Manager):
|
||||
|
|
|
|||
|
|
@ -2,11 +2,11 @@ import re
|
|||
from django.db import models
|
||||
from django.contrib.auth.models import User, Group
|
||||
from django.contrib import admin
|
||||
from apps.config.models import ConfigValue
|
||||
from apps.objects.util import object as util_object
|
||||
from apps.objects.managers.commchannel import CommChannelManager
|
||||
from apps.objects.managers.object import ObjectManager
|
||||
from apps.objects.managers.attribute import AttributeManager
|
||||
from src.config.models import ConfigValue
|
||||
from src.objects.util import object as util_object
|
||||
from src.objects.managers.commchannel import CommChannelManager
|
||||
from src.objects.managers.object import ObjectManager
|
||||
from src.objects.managers.attribute import AttributeManager
|
||||
from src import scripthandler
|
||||
from src import defines_global
|
||||
from src import ansi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue