~ubuntu-branches/debian/sid/tome/sid

« back to all changes in this revision

Viewing changes to src/generate.c

  • Committer: Package Import Robot
  • Author(s): Manoj Srivastava
  • Date: 2014-05-14 13:49:42 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20140514134942-mhutcdxhr1yhjjvw
Tags: 2.3.6-ah-1
* Upstream development of version 2 has moved into maintenance mode,
  with a new upstream git repository at:
  git://gitorious.org/tome2/tome2.git
  - Don't generate impassable glass walls.
  - Mark *all* quest monsters properly.
  - Avoid generating up staircases in selected dungeons.
  - Mimicry cloaks of Abomination now aggravate properly.
  - Properly handle item set effects with certain traps.
  - Fix crash bug during character dumps.
  - Misc. Mimicry fixes.
  - Prevent immunities from Balrog Form persisting too long.
  - Fix for loading/saving on Linux distribution using Fortify.
  - Fix for module directory paths.
  - Fix miscellaneous problems on 64-bit platforms.
  - Princess room should now always be generated.
  - Extra Blows applies to barehand combat too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1977
1977
 
1978
1978
        for (ebx = bx0 + temp; bx0 > 0 && ebx > dun->col_rooms; bx0--, ebx--);
1979
1979
 
1980
 
        if (ebx >= dun->col_rooms) return (FALSE);
 
1980
        if (ebx > dun->col_rooms) return (FALSE);
1981
1981
 
1982
1982
        /* Total number along height */
1983
1983
        temp = ((height - 1) / BLOCK_HGT) + 1;