summaryrefslogtreecommitdiff
path: root/town_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'town_cmd.c')
-rw-r--r--town_cmd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/town_cmd.c b/town_cmd.c
index fe983eea7..77ac02b9a 100644
--- a/town_cmd.c
+++ b/town_cmd.c
@@ -174,6 +174,10 @@ static void AnimateTile_Town(TileIndex tile)
_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);