summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-12-01 22:01:25 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-12-01 22:01:25 +0000
commit5480f286fa2ed4a7b90cf65e5a3bc203b27c7d0e (patch)
tree44faa5eb68a8ee0a892ae506b0888417dc70cee2 /crawl-ref/source/items.cc
parent0093b92f3f8bca2c89b9808fb27f223d857e6718 (diff)
downloadcrawl-ref-5480f286fa2ed4a7b90cf65e5a3bc203b27c7d0e.tar.gz
crawl-ref-5480f286fa2ed4a7b90cf65e5a3bc203b27c7d0e.zip
Nemelex abandonment now shuffles and unmarks all decks.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2962 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index 60b760aca3..c813175175 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -1087,13 +1087,12 @@ std::string origin_desc(const item_def &item)
desc += "You drew the Genie ";
break;
case AQ_WIZMODE:
- desc += "Your wizardly powers created "
- + article_it(item) + " ";
+ desc += "Your wizardly powers created "+article_it(item)+" ";
break;
default:
if (iorig > GOD_NO_GOD && iorig < NUM_GODS)
- desc += std::string(god_name(static_cast<god_type>(iorig)))
- + " gifted " + article_it(item) + " to you ";
+ desc += god_name(static_cast<god_type>(iorig))
+ + " gifted " + article_it(item) + " to you ";
else
// Bug really.
desc += "You stumbled upon " + article_it(item) + " ";