Change settings._TEST_ENVIRONMENT to settings.TEST_ENVIRONMENT to address not-found issues during initialization

This commit is contained in:
Griatch 2023-11-26 14:25:12 +01:00
parent d353d87628
commit 8914e7b0b6
10 changed files with 26 additions and 35 deletions

View file

@ -6,7 +6,6 @@ import re
from django.conf import settings
from django.db.models import Q
from django.db.models.fields import exceptions
from evennia.server import signals
from evennia.typeclasses.managers import TypeclassManager, TypedObjectManager
from evennia.utils.utils import (
@ -721,7 +720,7 @@ class ObjectDBManager(TypedObjectManager):
try:
home = dbid_to_obj(home_obj_or_dbref, self.model)
except self.model.DoesNotExist:
if settings._TEST_ENVIRONMENT:
if settings.TEST_ENVIRONMENT:
# this happens for databases where the #1 location is flushed during tests
home = None
else: