Don't duplicate the starting positions into the outer border.

This commit is contained in:
Mark de Wever 2007-10-28 10:53:53 +00:00
parent dd48d3d8db
commit 176b293197

View file

@ -1194,6 +1194,8 @@ def translator(filename, mapxforms, textxform):
outermap(lambda n: re.sub(r"\^V[a-z]+", "", n), outmap)
# Strip keeps out of the edges
outermap(lambda n: re.sub(r"K([a-z]+)", r"C\1", n), outmap)
# Strip the starting positions out of the edges
outermap(lambda n: re.sub(r"[1-9] ", r"", n), outmap)
# Turn big trees on the edges to ordinary forest hexes
outermap(lambda n: n.replace(r"Gg^Fet", r"Gs^Fp"), outmap)
modified = True