summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-25 13:23:23 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-25 13:23:23 +0000
commitbdb45bf27b86ff63c5afdff311b4065c83faf37d (patch)
treecf3a914532ecc372932b8d897e8c9abf57fbe2a4 /crawl-ref/source/monplace.cc
parentc500c6b3582877a10bd362722bde81eb9b94b917 (diff)
downloadcrawl-ref-bdb45bf27b86ff63c5afdff311b4065c83faf37d.tar.gz
crawl-ref-bdb45bf27b86ff63c5afdff311b4065c83faf37d.zip
Merged in crawl.akrasiac.org patches (simple messaging, milestones). These take
effect only if compiled with -DDGAMELAUNCH. Simple messaging: interacts with dgamelaunch's messaging facility allowing viewers to send messages to the player. Milestones: Writes a milestones.txt file (in xlogfile format) for things like the player killing uniques, reaching the end of a dungeon branch, etc. (similar to notes). milestones.txt is used for game announcements by an IRC bot. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1095 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monplace.cc')
-rw-r--r--crawl-ref/source/monplace.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index 66ac729387..f24325525b 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -857,8 +857,8 @@ static int choose_band( int mon_type, int power, int &band_size )
case MONS_PALE_DRACONIAN:
if (power > 18 && one_chance_in(3) && you.level_type == LEVEL_DUNGEON)
{
- band = BAND_DRACONIAN;
- band_size = random_range(2, 4);
+ band = BAND_DRACONIAN;
+ band_size = random_range(2, 4);
}
break;
case MONS_DRACONIAN_CALLER:
@@ -870,8 +870,8 @@ static int choose_band( int mon_type, int power, int &band_size )
case MONS_DRACONIAN_SHIFTER:
if (power > 20 && you.level_type == LEVEL_DUNGEON)
{
- band = BAND_DRACONIAN;
- band_size = random_range(3, 6);
+ band = BAND_DRACONIAN;
+ band_size = random_range(3, 6);
}
break;
case MONS_TIAMAT: