summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/potion.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-05-25 23:26:50 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-05-25 23:50:22 -0400
commit9b48444c62522562247531d8d9ba56e2784d3e93 (patch)
tree7351533c3605e77f692a37fb8039ae735abc676b /crawl-ref/source/potion.cc
parent6f959b73ab6b07a742e45870b540a2038e405253 (diff)
downloadcrawl-ref-9b48444c62522562247531d8d9ba56e2784d3e93.tar.gz
crawl-ref-9b48444c62522562247531d8d9ba56e2784d3e93.zip
Remove some old inaccurate comments from potion.cc
Diffstat (limited to 'crawl-ref/source/potion.cc')
-rw-r--r--crawl-ref/source/potion.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/potion.cc b/crawl-ref/source/potion.cc
index ae898e7c28..0eb1e91691 100644
--- a/crawl-ref/source/potion.cc
+++ b/crawl-ref/source/potion.cc
@@ -363,7 +363,7 @@ bool potion_effect(potion_type pot_eff, int pow, item_def *potion, bool was_know
break;
- case POT_PORRIDGE: // oatmeal - always gluggy white/grey?
+ case POT_PORRIDGE:
if (you.species == SP_VAMPIRE
|| player_mutation_level(MUT_CARNIVOROUS) == 3)
{
@@ -387,7 +387,6 @@ bool potion_effect(potion_type pot_eff, int pow, item_def *potion, bool was_know
}
break;
- // Don't generate randomly - should be rare and interesting.
case POT_DECAY:
if (you.rot(&you, 0, 3 + random2(3)))
xom_is_stimulated(50 / xom_factor);