summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player-equip.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2014-01-27 14:09:48 +0100
committerAdam Borowski <kilobyte@angband.pl>2014-01-27 14:10:53 +0100
commitaffd9c20f5827e16b70decde8785b03a7344839c (patch)
tree24502d55d60ff272d39deacbbda4cac4124cb05b /crawl-ref/source/player-equip.cc
parent9ccd92488bc74a442e60af138830bd032981ffb1 (diff)
downloadcrawl-ref-affd9c20f5827e16b70decde8785b03a7344839c.tar.gz
crawl-ref-affd9c20f5827e16b70decde8785b03a7344839c.zip
Don't claim guardian spirit is "protective" for vine stalkers.
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 f487eefa5d..f1062c278f 100644
--- a/crawl-ref/source/player-equip.cc
+++ b/crawl-ref/source/player-equip.cc
@@ -984,7 +984,7 @@ static void _equip_armour_effect(item_def& arm, bool unmeld)
if (!unmeld && you.spirit_shield() < 2)
{
dec_mp(you.magic_points);
- if (you.species == SP_DJINNI)
+ if (you.species == SP_DJINNI || you.species == SP_VINE_STALKER)
mpr("You feel the presence of a powerless spirit.");
else
mpr("You feel your power drawn to a protective spirit.");
@@ -1382,7 +1382,7 @@ static void _equip_jewellery_effect(item_def &item, bool unmeld)
if (you.spirit_shield() < 2 && !unmeld)
{
dec_mp(you.magic_points);
- if (you.species == SP_DJINNI)
+ if (you.species == SP_DJINNI || you.species == SP_VINE_STALKER)
mpr("You feel the presence of a powerless spirit.");
else
mpr("You feel your power drawn to a protective spirit.");