summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transfor.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-11 17:10:51 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-11 17:10:51 +0000
commit6ff6324e1225d17c1911efda0853ae032546cb91 (patch)
tree959c7c66cca51b742fe489dca270ad307c6f5424 /crawl-ref/source/transfor.cc
parentf6e92f4f5ed27ac7309f7382b4f04395bf1ad07e (diff)
downloadcrawl-ref-6ff6324e1225d17c1911efda0853ae032546cb91.tar.gz
crawl-ref-6ff6324e1225d17c1911efda0853ae032546cb91.zip
Fix 2496474: Bardings melding into centaurs.
Fix 2496520: Quivered weapons getting displayed as melded. Also, summoned monsters can no longer be affected by vampiric draining (spell or brand, vampire bite was already disallowed). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8413 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/transfor.cc')
-rw-r--r--crawl-ref/source/transfor.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/transfor.cc b/crawl-ref/source/transfor.cc
index 678b7b49ed..2737cdecf5 100644
--- a/crawl-ref/source/transfor.cc
+++ b/crawl-ref/source/transfor.cc
@@ -177,8 +177,11 @@ static bool _unmeld_equipment(std::set<equipment_type> melded)
break;
case EQ_BOOTS:
- if (you.mutation[MUT_HOOVES] || you.mutation[MUT_TALONS])
+ if (you.inv[arm].sub_type == ARM_BOOTS // i.e. not barding
+ && (you.mutation[MUT_HOOVES] || you.mutation[MUT_TALONS]))
+ {
force_remove = true;
+ }
break;
case EQ_SHIELD: