summaryrefslogblamecommitdiff
path: root/hercules/convert_server.py
blob: f323b4e147f96791fab33b07b006dbc3a5f63e27 (plain) (tree)
1
2
3
4
5
6
7
8
9





                                 


                                   
 




                               
#! /usr/bin/env python
# -*- coding: utf8 -*-
#
# Copyright (C) 2014  Evol Online
# Author: Andrei Karas (4144)

from code.serverutils import *
from code.server.evol.main import *
from code.server.tmw.main import *

serverType = detectServerType()
if serverType == "evol":
    serverEvolMain();
else:
    serverTmwMain();