summaryrefslogtreecommitdiff
path: root/hercules/code/server/tmw/mobdb.py
diff options
context:
space:
mode:
Diffstat (limited to 'hercules/code/server/tmw/mobdb.py')
-rw-r--r--hercules/code/server/tmw/mobdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hercules/code/server/tmw/mobdb.py b/hercules/code/server/tmw/mobdb.py
index aa9502a..7e406b1 100644
--- a/hercules/code/server/tmw/mobdb.py
+++ b/hercules/code/server/tmw/mobdb.py
@@ -11,7 +11,7 @@ from code.stringutils import *
def getMobDbFile(srcDir):
files = os.listdir(srcDir)
for srcFile in files:
- if srcFile.find("mob_db.txt") >= 0:
+ if srcFile.find("mob_db") >= 0:
yield srcFile
def convertMobDb():