summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godpassive.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/godpassive.cc')
-rw-r--r--crawl-ref/source/godpassive.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/godpassive.cc b/crawl-ref/source/godpassive.cc
index 76abeca76e..54ee1b214a 100644
--- a/crawl-ref/source/godpassive.cc
+++ b/crawl-ref/source/godpassive.cc
@@ -245,6 +245,10 @@ void ash_check_bondage(bool msg)
for (int i = EQ_LEFT_RING; i < NUM_EQUIP; ++i)
if (you.equip[i] != -1 && you.inv[you.equip[i]].cursed())
++you.bondage_level;
+
+ // Allow full bondage when all available slots are cursed.
+ if (you.bondage_level == 3)
+ ++you.bondage_level;
}
else
for (int i = ET_WEAPON; i < NUM_ET; ++i)