diff options
Diffstat (limited to 'hercules/convert_server.py')
-rwxr-xr-x | hercules/convert_server.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/hercules/convert_server.py b/hercules/convert_server.py index 7ad1fe5..9968218 100755 --- a/hercules/convert_server.py +++ b/hercules/convert_server.py @@ -4,11 +4,13 @@ # Copyright (C) 2014 Evol Online # Author: Andrei Karas (4144) -from code.server.npcs import * +from code.server.itemdb import * from code.server.mobdb import * +from code.server.npcs import * from code.server.utils import * cleanServerData() createMainScript() -convertNpcs(); -convertMobDb(); +convertNpcs() +convertMobDb() +convertItemDb() |