summaryrefslogtreecommitdiff
path: root/hercules/code
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-06-19 21:10:23 +0300
committerAndrei Karas <akaras@inbox.ru>2016-06-19 21:10:23 +0300
commitb44e413ccdec9f46c990582928f8fdd85bb96e3e (patch)
tree41cceb4f8c1212ec31368127193092e88e36ee2c /hercules/code
parentffae72db7aa5eeeac3bead8c0f505b73f4e2b6a4 (diff)
downloadtools-b44e413ccdec9f46c990582928f8fdd85bb96e3e.tar.gz
tools-b44e413ccdec9f46c990582928f8fdd85bb96e3e.tar.bz2
tools-b44e413ccdec9f46c990582928f8fdd85bb96e3e.tar.xz
tools-b44e413ccdec9f46c990582928f8fdd85bb96e3e.zip
hercules: parse monster names with non ascii names.
Diffstat (limited to 'hercules/code')
-rw-r--r--hercules/code/server/tmw/npcs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hercules/code/server/tmw/npcs.py b/hercules/code/server/tmw/npcs.py
index 2d8abdb..32fb85b 100644
--- a/hercules/code/server/tmw/npcs.py
+++ b/hercules/code/server/tmw/npcs.py
@@ -46,7 +46,7 @@ warpRe3 = re.compile("^(?P<map>[^/](.+)),([ ]*)(?P<x>[\d]+),([ ]*)(?P<y>[\d]+)[|
"(?P<tag>warp)[|](?P<xs>[\d-]+),(?P<ys>[\d-]+),(?P<targetmap>[^/](.+)),([ ]*)(?P<targetx>[\d]+),([ ]*)(?P<targety>[\d]+)$")
monsterRe = re.compile("^(?P<map>[^/](.+)),([ ]*)(?P<x>[\d]+),([ ]*)(?P<y>[\d]+),([ ]*)(?P<xs>[\d-]+),(?P<ys>[\d-]+)[|]"
- "(?P<tag>monster)[|](?P<name>[\w#' ]+)[|]"
+ "(?P<tag>monster)[|](?P<name>[^|]+)[|]"
"(?P<class>[\d]+),(?P<num>[\d]+),(?P<delay1>[\d]+)ms,(?P<delay2>[\d]+)ms(|,(?P<label>[\w+-:#]+))$")
monsterRe2 = re.compile("^(?P<map>[^/](.+))[.]gat,([ ]*)(?P<x>[\d]+),([ ]*)(?P<y>[\d]+),([ ]*)(?P<xs>[\d-]+),(?P<ys>[\d-]+)\t"