- Fixed a few major bugs, and partly removed the out.out redundancy.

- Did some work on the template town implementation. Still far froom finished though.
- Fixed a glitch in which a forced line break (with "|") would erase a character that should not be erased.

git-svn-id: http://openexile.googlecode.com/svn/trunk@48 4ebdad44-0ea0-11de-aab3-ff745001d230
This commit is contained in:
2009-05-02 03:39:16 +00:00
parent de3d2f78f5
commit d60b8a7fb1
21 changed files with 158 additions and 110 deletions

View File

@@ -1252,7 +1252,7 @@ short print_terrain(location space)
unsigned char which_terrain;
if (overall_mode == MODE_LOOK_OUTDOORS) {
which_terrain = univ.out.out[space.x][space.y];
which_terrain = univ.out[space.x][space.y];
}
if (overall_mode == MODE_LOOK_TOWN) {
which_terrain = univ.town->terrain(space.x,space.y);