Don't duplicate the starting positions into the outer border.
This commit is contained in:
parent
dd48d3d8db
commit
176b293197
1 changed files with 2 additions and 0 deletions
|
@ -1194,6 +1194,8 @@ def translator(filename, mapxforms, textxform):
|
||||||
outermap(lambda n: re.sub(r"\^V[a-z]+", "", n), outmap)
|
outermap(lambda n: re.sub(r"\^V[a-z]+", "", n), outmap)
|
||||||
# Strip keeps out of the edges
|
# Strip keeps out of the edges
|
||||||
outermap(lambda n: re.sub(r"K([a-z]+)", r"C\1", n), outmap)
|
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
|
# Turn big trees on the edges to ordinary forest hexes
|
||||||
outermap(lambda n: n.replace(r"Gg^Fet", r"Gs^Fp"), outmap)
|
outermap(lambda n: n.replace(r"Gg^Fet", r"Gs^Fp"), outmap)
|
||||||
modified = True
|
modified = True
|
||||||
|
|
Loading…
Add table
Reference in a new issue