Added a special path setup for the full install rather than the -e install on windows.

This commit is contained in:
Griatch 2015-02-02 22:23:40 +01:00
parent 38fbdd5857
commit c9a22ba657

View file

@ -7,7 +7,10 @@ the command %path%.
import os, sys
# for pip install -e
sys.path.insert(0, os.path.abspath(os.getcwd()))
# main library path
sys.path.insert(0, os.path.join(sys.prefix, "Lib", "site-packages"))
from evennia.server.evennia_launcher import main
main()