summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index c5cbc035f2..954046ad1e 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -3036,8 +3036,8 @@ bool thrown_object_destroyed(item_def *item, const coord_def& where,
// Enchanted projectiles get an extra shot at avoiding
// destruction: plus / (1 + plus) chance of survival.
- bool destroyed = (chance == 0) ? false :
- (one_chance_in(chance) && one_chance_in(item->plus));
+ bool destroyed = (chance == 0) ? false : (one_chance_in(chance)
+ && one_chance_in(item->plus + 1));
bool hostile_grid = grid_destroys_items(grd(where));
// Non-returning items thrown into item-destroying grids are always
@@ -4231,6 +4231,8 @@ bool _drink_fountain()
40, POT_HEAL_WOUNDS,
40, POT_SPEED,
40, POT_MIGHT,
+ 40, POT_AGILITY,
+ 40, POT_BRILLIANCE,
32, POT_DEGENERATION,
27, POT_LEVITATION,
27, POT_POISON,