mirror of
https://github.com/evennia/evennia.git
synced 2026-04-01 13:37:17 +02:00
I've been meaning to do this for a while as well. Break CommChannel and CommChannelMessage out into a separate app. I had them lumped in with objects/models.py due to some funkage with the admin site registering that is now resolved.
NOTE: You will need to syncdb and re-create any channels you may have had. Sorry for the inconvenience, we're still early enough in development where breakages like this may happen once in a blue moon.
This commit is contained in:
parent
42f11b208b
commit
9f86a4c586
6 changed files with 7 additions and 115 deletions
|
|
@ -3,10 +3,8 @@ Comsys functions.
|
|||
"""
|
||||
import time
|
||||
import datetime
|
||||
|
||||
from django.utils import simplejson
|
||||
|
||||
from src.objects.models import CommChannel, CommChannelMessage
|
||||
from src.channels.models import CommChannel, CommChannelMessage
|
||||
from src import session_mgr
|
||||
from src import ansi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue