mirror of
https://github.com/evennia/evennia.git
synced 2026-04-04 23:17:17 +02:00
Made changes to idmapper that might help alleviate issue101 (more people need to run it to make sure). Moved around default command modules to be more logically named and distributed.
This commit is contained in:
parent
19dd476115
commit
3f703efc2d
17 changed files with 1920 additions and 1851 deletions
|
|
@ -424,6 +424,7 @@ INSTALLED_APPS = (
|
|||
'src.permissions',
|
||||
'game.web.news',
|
||||
'game.web.website',)
|
||||
|
||||
# The user profile extends the User object with more functionality;
|
||||
# This should usually not be changed.
|
||||
AUTH_PROFILE_MODULE = "players.PlayerDB"
|
||||
|
|
@ -439,3 +440,9 @@ try:
|
|||
INSTALLED_APPS = INSTALLED_APPS + ('django_extensions',)
|
||||
except ImportError:
|
||||
pass
|
||||
# South handles automatic database scheme migrations when evennia updates
|
||||
#try:
|
||||
# import south
|
||||
# INSTALLED_APPS = INSTALLED_APPS + ('south',)
|
||||
#except ImportError:
|
||||
# pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue