summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/potion.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-20 19:33:40 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-20 19:33:40 +0100
commitad4f7579b71feef7f95d76f0b5e5fcfd76bc047d (patch)
tree1b16b4fb9df5b42bfe45c0fae12c8045fdbd812c /crawl-ref/source/potion.cc
parent27e6458ec466a59dc99f11688c29370e5a958052 (diff)
downloadcrawl-ref-ad4f7579b71feef7f95d76f0b5e5fcfd76bc047d.tar.gz
crawl-ref-ad4f7579b71feef7f95d76f0b5e5fcfd76bc047d.zip
De-woodify the enum.
Diffstat (limited to 'crawl-ref/source/potion.cc')
-rw-r--r--crawl-ref/source/potion.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/potion.cc b/crawl-ref/source/potion.cc
index 25943c42e0..be0bb9b5b4 100644
--- a/crawl-ref/source/potion.cc
+++ b/crawl-ref/source/potion.cc
@@ -452,7 +452,7 @@ bool potion_effect(potion_type pot_eff, int pow, bool drank_it, bool was_known,
you.increase_duration(DUR_RESISTANCE, (random2(pow) + 35) / factor);
break;
- case POT_WOOD:
+ case POT_LIGNIFY:
if (transform(30, TRAN_TREE, !was_known))
you.transform_uncancellable = true;
else