diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-25 17:29:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-25 18:09:12 +0300 |
commit | d305488c2eb06f703d2948b4a4b0ecb2d9d9efa7 (patch) | |
tree | 0e48389b0ffdb07a23743e2b193353f748d154d9 /hercules/code/server/tmw/main.py | |
parent | 7369a2d3e7ba139097947382b284625d3f7c60c4 (diff) | |
download | tools-d305488c2eb06f703d2948b4a4b0ecb2d9d9efa7.tar.gz tools-d305488c2eb06f703d2948b4a4b0ecb2d9d9efa7.tar.bz2 tools-d305488c2eb06f703d2948b4a4b0ecb2d9d9efa7.tar.xz tools-d305488c2eb06f703d2948b4a4b0ecb2d9d9efa7.zip |
hercules: into converter add support for new mob_db format.
Untested on real server.
Diffstat (limited to 'hercules/code/server/tmw/main.py')
-rw-r--r-- | hercules/code/server/tmw/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hercules/code/server/tmw/main.py b/hercules/code/server/tmw/main.py index 330c860..2831877 100644 --- a/hercules/code/server/tmw/main.py +++ b/hercules/code/server/tmw/main.py @@ -31,7 +31,7 @@ def serverTmwMain(isNew): items = convertItemDb(isNew) npcIds = Set() convertNpcs(items, npcIds) - convertMobDb() + convertMobDb(items) quests = dict() convertConsts(quests, npcIds) convertMobSkillDb() |