mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
11 lines
169 B
Python
Executable file
11 lines
169 B
Python
Executable file
#! /usr/bin/python2.7
|
|
"""
|
|
Linux launcher
|
|
"""
|
|
|
|
import os, sys
|
|
|
|
sys.path.insert(0, os.path.abspath(os.getcwd()))
|
|
|
|
from evennia.server.evennia_launcher import main
|
|
main()
|