Skip to content

Commit

Permalink
Fixing ring of wisdom message
Browse files Browse the repository at this point in the history
  • Loading branch information
flend committed Oct 28, 2018
1 parent 4991bcf commit 8e1a70f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Brogue Source/BrogueCode/Items.c
Original file line number Diff line number Diff line change
Expand Up @@ -2461,8 +2461,8 @@ void itemDetails(char *buf, item *theItem) {
break;
case RING_WISDOM:
sprintf(buf2, "\n\nWhen worn, your staffs will recharge at %i%% of their normal rate. (If the ring is enchanted, the rate will increase to %i%% of the normal rate.)",
(int) (100 * fp_ringWisdomMultiplier(enchant) >> FP_BASE),
(int) (100 * fp_ringWisdomMultiplier(enchant + FP_FACTOR) >> FP_BASE));
(int) (10 * fp_ringWisdomMultiplier(enchant)),
(int) (10 * fp_ringWisdomMultiplier(enchant + FP_FACTOR)));
strcat(buf, buf2);
break;
case RING_REAPING:
Expand Down

0 comments on commit 8e1a70f

Please sign in to comment.