summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells3.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 19:54:51 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 19:54:51 +0000
commit4100f35810ffbfbf4d566d8d589ee278ad039bac (patch)
tree19d1332cdbff5726712e757aa34babef6c29f8a7 /crawl-ref/source/spells3.cc
parente15cb03057e1f57801e01fdc3c6271e0736f4c79 (diff)
downloadcrawl-ref-4100f35810ffbfbf4d566d8d589ee278ad039bac.tar.gz
crawl-ref-4100f35810ffbfbf4d566d8d589ee278ad039bac.zip
Add power adjustments.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5671 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells3.cc')
-rw-r--r--crawl-ref/source/spells3.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index 2e5528651f..42ea1897fb 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -417,8 +417,8 @@ bool summon_shadows(int pow, bool god_gift, bool force_hostile)
{
bool success = false;
- // Maximum power is 300.
- const int how_many = (pow / 75 + 1);
+ // Maximum power is 300 (11 shadows).
+ const int how_many = (pow / 30 + 1);
mpr(how_many > 1 ? "Flickering shadows surround you."
: "A nearby shadow flickers.");