summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-07 08:31:45 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-07 08:31:45 +0000
commitfaca2fd92e2ba17f40f4a5c08d4f88dd25ae7085 (patch)
treee280b3b2841845a5c94429a9a2a7cf29053184de /crawl-ref/source/monplace.h
parentb58fbcfafc44bc2810863a3722bee2e6a8f7d22d (diff)
downloadcrawl-ref-faca2fd92e2ba17f40f4a5c08d4f88dd25ae7085.tar.gz
crawl-ref-faca2fd92e2ba17f40f4a5c08d4f88dd25ae7085.zip
Added support for "no_monster_gen" tag.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@586 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monplace.h')
-rw-r--r--crawl-ref/source/monplace.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/monplace.h b/crawl-ref/source/monplace.h
index 2bc26d5398..38c8014ba0 100644
--- a/crawl-ref/source/monplace.h
+++ b/crawl-ref/source/monplace.h
@@ -15,6 +15,7 @@
#define MONPLACE_H
#include "enum.h"
+#include "dungeon.h"
#include "FixVec.h"
// last updated 13mar2001 {gdl}
@@ -39,8 +40,7 @@
int mons_place( int mon_type, char behaviour, int target, bool summoned,
int px, int py, int level_type = LEVEL_DUNGEON,
int proximity = PROX_ANYWHERE, int extra = 250,
- int dur = 0,
- bool permit_bands = false );
+ int dur = 0, bool permit_bands = false );
// last updated 12may2000 {dlb}
/* ***********************************************************************
@@ -80,7 +80,8 @@ int summon_any_demon( char demon_class );
bool place_monster( int &id, int mon_type, int power, char behaviour,
int target, bool summoned, int px, int py, bool allow_bands,
int proximity = PROX_ANYWHERE, int extra = 250,
- int dur = 0 );
+ int dur = 0,
+ const dgn_region_list &proscribed = dgn_region_list() );
monster_type rand_dragon( dragon_class_type type );