mirror of
https://github.com/evennia/evennia.git
synced 2026-04-05 23:47:16 +02:00
Even more death and destruction. A lot more stuff moved to src/. A lot more bugs probably introduced.
This commit is contained in:
parent
d3808c1ea2
commit
4bb00013ae
28 changed files with 45 additions and 38 deletions
|
|
@ -3,15 +3,16 @@ import re
|
|||
from django.db import models
|
||||
from django.contrib.auth.models import User, Group
|
||||
|
||||
import scripthandler
|
||||
import defines_global
|
||||
import ansi
|
||||
import src.flags
|
||||
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 import scripthandler
|
||||
import defines_global
|
||||
from src import ansi
|
||||
# Import as the absolute path to avoid local variable clashes.
|
||||
import src.flags
|
||||
|
||||
class Attribute(models.Model):
|
||||
"""
|
||||
|
|
@ -894,4 +895,4 @@ class CommChannelMessage(models.Model):
|
|||
list_display = ('channel', 'message')
|
||||
|
||||
import functions_general
|
||||
import session_mgr
|
||||
from src import session_mgr
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue