file-format: use tile names instead of numbers (write only)
This commit is contained in:
parent
da7b30af88
commit
3a16d982a4
1 changed files with 3 additions and 1 deletions
|
@ -2181,7 +2181,9 @@ public class Micropolis
|
||||||
if (x != 0) {
|
if (x != 0) {
|
||||||
out.writeCharacters(" ");
|
out.writeCharacters(" ");
|
||||||
}
|
}
|
||||||
out.writeCharacters(Integer.toString(z));
|
out.writeCharacters(
|
||||||
|
Tiles.get(z & LOMASK).name
|
||||||
|
);
|
||||||
}
|
}
|
||||||
out.writeEndElement(); //mapRow
|
out.writeEndElement(); //mapRow
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue