Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bonuses for enchanted, unidentified rings #603

Merged
merged 2 commits into from
Sep 30, 2023

Conversation

flend
Copy link
Collaborator

@flend flend commented Sep 2, 2023

Fixes issue #602.

  • Unidentified rings can no longer have higher bonuses than they will have once identified
  • Unidentified positive rings give 1 + timesEnchanted prior to identification, not 1 + timesEnchanted - 1

Test evidence:

Unidentified +1 ring of regen, 2 enchants

1774        if (theItem->category != RING) {
(gdb) n
1777        if (!(theItem->flags & ITEM_IDENTIFIED)
(gdb)
1782            return min(theItem->enchant1, theItem->timesEnchanted + 1);
(gdb) print theItem->enchant1
$1 = 3
(gdb) print theItem->timesEnchanted
$2 = 2
(gdb) n
updateRingBonuses () at src/brogue/Items.c:7776
7776                        break;
(gdb) print rogue.regenerationBonus
$3 = 3

Unidentified +3 ring of regen, 3 enchants

1774        if (theItem->category != RING) {
(gdb) n
1777        if (!(theItem->flags & ITEM_IDENTIFIED)
(gdb)
1782            return min(theItem->enchant1, theItem->timesEnchanted + 1);
(gdb) print theItem->enchant1
$4 = 6
(gdb) print theItem->timesEnchanted
$5 = 3
(gdb) n
updateRingBonuses () at src/brogue/Items.c:7776
7776                        break;
(gdb) print rogue.regenerationBonus
$6 = 4

Unidentified -3 ring of regen, 4 enchants

1774        if (theItem->category != RING) {
(gdb) n
1777        if (!(theItem->flags & ITEM_IDENTIFIED)
(gdb)
1782            return min(theItem->enchant1, theItem->timesEnchanted + 1);
(gdb) print theItem->enchant1
$1 = 1
(gdb) print theItem->timesEnchanted
$2 = 4
(gdb) n
updateRingBonuses () at src/brogue/Items.c:7776
7776                        break;
(gdb) print rogue.regenerationBonus
$3 = 1
(gdb) c
Continuing.

Identifying ring

Thread 1 "brogue" hit Breakpoint 1, effectiveRingEnchant (theItem=0x555556e51770) at src/brogue/Items.c:1774
1774        if (theItem->category != RING) {
(gdb) n
1777        if (!(theItem->flags & ITEM_IDENTIFIED)
(gdb) n
1784        return theItem->enchant1;
(gdb) print theItem->enchant1
$4 = 1
(gdb) n
updateRingBonuses () at src/brogue/Items.c:7776
7776                        break;
(gdb) print rogue.regenerationBonus
$5 = 1
(gdb)

Copy link
Owner

@tmewett tmewett left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, good catch

@flend flend force-pushed the feature/fix_unidentified_ring_bonuses branch from 7244bd3 to fa2b5ff Compare September 27, 2023 20:38
@tmewett tmewett merged commit ebdd0d7 into tmewett:master Sep 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants