Add ability to grab dist-specific variables

This commit is contained in:
DarkPhoenix
2011-01-19 17:30:17 +03:00
parent 0ad1132f21
commit 6060b3d86b

View File

@@ -28,9 +28,16 @@ staticPath = os.path.join(pyfaPath, "staticdata")
saveDB = os.path.join(savePath, "saveddata.db")
# The database where the static EVE data from the datadump is kept.
# WARNING: This is not the standard sqlite datadump but a modified version for EOS
# This is not the standard sqlite datadump but a modified version created by eos
# maintenance script
gameDB = os.path.join(staticPath, "eve.db")
# Load variable overrides specific to distribution type
try:
from configforced import *
except ImportError:
pass
## DON'T MODIFY ANYTHING BELOW ##
import eos.config