summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godwrath.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-08 22:23:51 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-08 22:23:51 -0600
commit282c4c46c0b2e413e1ad3b0bfb62db6fd1802d00 (patch)
tree167ae5a17ee7b42f5eec8871c883442315e4299a /crawl-ref/source/godwrath.cc
parentcdd501fcf0c5bcf14744e6c8cc6ad9b13e30bcc8 (diff)
downloadcrawl-ref-282c4c46c0b2e413e1ad3b0bfb62db6fd1802d00.tar.gz
crawl-ref-282c4c46c0b2e413e1ad3b0bfb62db6fd1802d00.zip
Tweak the power of Beogh's dancing weapons again to match the maximum.
Diffstat (limited to 'crawl-ref/source/godwrath.cc')
-rw-r--r--crawl-ref/source/godwrath.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/godwrath.cc b/crawl-ref/source/godwrath.cc
index a669774d5c..813c5debd4 100644
--- a/crawl-ref/source/godwrath.cc
+++ b/crawl-ref/source/godwrath.cc
@@ -674,7 +674,8 @@ static bool _beogh_retribution()
menv[mon].flags |= MF_HARD_RESET;
ghost_demon newstats;
- newstats.init_dancing_weapon(wpn, you.experience_level * 5);
+ newstats.init_dancing_weapon(wpn,
+ you.experience_level * 50 / 9);
menv[mon].set_ghost(newstats);
menv[mon].dancing_weapon_init();