Skip to content

Commit

Permalink
Wands of death can be recharged more than once.
Browse files Browse the repository at this point in the history
This was reverted from the WoW nerfs, but we'll keep it.
  • Loading branch information
elunna committed Sep 26, 2023
1 parent 8af72f3 commit d47406b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/read.c
Original file line number Diff line number Diff line change
Expand Up @@ -846,8 +846,8 @@ struct monst *mtmp;
* 7 : 100 100
*/
n = (int) obj->recharged;
if (n > 0 && (obj->otyp == WAN_WISHING || obj->otyp == WAN_DEATH
|| (n * n * n > rn2(7 * 7 * 7)))) { /* recharge_limit */
if (n > 0 && (obj->otyp == WAN_WISHING
|| (n * n * n > rn2(7 * 7 * 7)))) { /* recharge_limit */
if (yours)
wand_explode(obj, rnd(lim));
else
Expand Down

0 comments on commit d47406b

Please sign in to comment.