summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player-equip.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-02-10 19:53:52 -0700
committerSteve Melenchuk <smelenchuk@gmail.com>2014-02-10 19:53:52 -0700
commit8ac5a44c68917fa44982063b71092573f49036e0 (patch)
treece659eff3dabfc71bd5bc5f195b3baf3608d4d4f /crawl-ref/source/player-equip.cc
parent5358f5b16d339fdc1462138340e8b4fb27cd799a (diff)
downloadcrawl-ref-8ac5a44c68917fa44982063b71092573f49036e0.tar.gz
crawl-ref-8ac5a44c68917fa44982063b71092573f49036e0.zip
s/Dithmengos/Dithmenos/ (dpeg).
At least three devs are probably waiting for this to be pushed if they're not about to push it themselves. So now it's done.
Diffstat (limited to 'crawl-ref/source/player-equip.cc')
-rw-r--r--crawl-ref/source/player-equip.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/player-equip.cc b/crawl-ref/source/player-equip.cc
index f1062c278f..3761579308 100644
--- a/crawl-ref/source/player-equip.cc
+++ b/crawl-ref/source/player-equip.cc
@@ -455,9 +455,9 @@ static void _equip_use_warning(const item_def& item)
mpr("You really shouldn't be using a hasty item like this.");
else if (is_poisoned_item(item) && you_worship(GOD_SHINING_ONE))
mpr("You really shouldn't be using a poisoned item like this.");
- else if (is_illuminating_item(item) && you_worship(GOD_DITHMENGOS))
+ else if (is_illuminating_item(item) && you_worship(GOD_DITHMENOS))
mpr("You really shouldn't be using an illuminating item like this.");
- else if (is_fiery_item(item) && you_worship(GOD_DITHMENGOS))
+ else if (is_fiery_item(item) && you_worship(GOD_DITHMENOS))
mpr("You really shouldn't be using a fiery item like this.");
}