From b49f10b2941239bca037dcc578479f987866f92a Mon Sep 17 00:00:00 2001 From: Jude Brown Date: Fri, 8 Jan 2010 18:18:23 +1000 Subject: And let single centaurs spawn in Shoals. (Greensnark, sorear) This keeps with the current "Greek" theme of Shoals. Single monsters are certainly more desirable than packs in this context. --- crawl-ref/source/mon-place.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/mon-place.cc') diff --git a/crawl-ref/source/mon-place.cc b/crawl-ref/source/mon-place.cc index 0e56e36c8f..cf5f0cfe5d 100644 --- a/crawl-ref/source/mon-place.cc +++ b/crawl-ref/source/mon-place.cc @@ -1849,7 +1849,7 @@ static band_type _choose_band(int mon_type, int power, int &band_size, case MONS_CENTAUR_WARRIOR: natural_leader = true; case MONS_CENTAUR: - if (power > 9 && one_chance_in(3)) + if (power > 9 && one_chance_in(3) && you.where_are_you != BRANCH_SHOALS) { band = BAND_CENTAURS; band_size = 2 + random2(4); -- cgit v1.2.3-54-g00ecf