# HG changeset patch # User Darkvater # Date 1138300574 0 # Node ID 69a3fba739d6232ae71388879bd5cea2f6760555 # Parent 403b7feef5587ab7e8e1ee804f0680dfc6c72ed6 (svn r3445) - Fix: [ 1415379 ] Enhance documentation of lift destination - Fix: wrong documentation of trees (Tron) diff --git a/docs/landscape.html b/docs/landscape.html --- a/docs/landscape.html +++ b/docs/landscape.html @@ -290,7 +290,7 @@ diff --git a/docs/landscape_grid.html b/docs/landscape_grid.html --- a/docs/landscape_grid.html +++ b/docs/landscape_grid.html @@ -134,7 +134,7 @@ 4 trees XXXX XXXX - OOOO OOOO OOXX XXXX + OOOO OOOO XXXX XXXX XXXX XXXX XXXX XXOO XXXX XXXX diff --git a/town_cmd.c b/town_cmd.c --- a/town_cmd.c +++ b/town_cmd.c @@ -174,6 +174,10 @@ _m[tile].m1 |= 0x80; + /** Building has 6 floors, number 0 .. 6, where 1 is illegal. + * This is due to the fact that the first floor is, in the graphics, + * the height of 2 'normal' floors. + * Furthermore, there are 6 lift positions from floor N (incl) to floor N + 1 (excl) */ do { i = (Random() & 7) - 1; } while (i < 0 || i == 1 || i * 6 == old);