summaryrefslogtreecommitdiff
path: root/hercules
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-09-16 00:08:48 +0300
committerAndrei Karas <akaras@inbox.ru>2015-09-16 00:08:48 +0300
commitd71aa7d6d7203e5408730cfd86d5f402e0e17a4a (patch)
treeb0f1b66e8d7c170c5cadde9f94d6f70121f3e3ed /hercules
parent5c526d2add2b086c00157595109581771bfbbd94 (diff)
downloadtools-d71aa7d6d7203e5408730cfd86d5f402e0e17a4a.tar.gz
tools-d71aa7d6d7203e5408730cfd86d5f402e0e17a4a.tar.bz2
tools-d71aa7d6d7203e5408730cfd86d5f402e0e17a4a.tar.xz
tools-d71aa7d6d7203e5408730cfd86d5f402e0e17a4a.zip
hercules: update pet db path and disable quests conversion.
Diffstat (limited to 'hercules')
-rw-r--r--hercules/code/servertoclient/pets.py2
-rw-r--r--hercules/code/servertoclient/quests.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/hercules/code/servertoclient/pets.py b/hercules/code/servertoclient/pets.py
index fa1219b..cad4af3 100644
--- a/hercules/code/servertoclient/pets.py
+++ b/hercules/code/servertoclient/pets.py
@@ -10,7 +10,7 @@ from code.fileutils import *
def convertPets():
destDir = "clientdata/"
templatesDir = "templates/"
- petsDbFile = "serverdata/db/pet_db.txt"
+ petsDbFile = "serverdata/db/re/pet_db.txt"
fieldsSplit = re.compile(",")
makeDir(destDir)
tpl = readFile(templatesDir + "pet.tpl")
diff --git a/hercules/code/servertoclient/quests.py b/hercules/code/servertoclient/quests.py
index 6243ae9..848f07b 100644
--- a/hercules/code/servertoclient/quests.py
+++ b/hercules/code/servertoclient/quests.py
@@ -9,6 +9,8 @@ from code.fileutils import *
from code.stringutils import *
def convertQuests():
+ print "quests disabled for now"
+ return
destDir = "clientdata/"
templatesDir = "templates/"
questsDbFile = "serverdata/db/quest_db.txt"