Skip to content

Commit

Permalink
Fix bad uwep reference in calc_prop_bonus.
Browse files Browse the repository at this point in the history
  • Loading branch information
elunna committed Oct 2, 2023
1 parent 895bb39 commit 120fea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/attrib.c
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ long prop;
return (schar) 6;
else if (bonus < 18 && !otmp->blessed)
return (schar) 18;
else if (uwep->blessed)
else if (otmp->blessed)
return (schar) 25;
}
return (schar) 0;
Expand Down

0 comments on commit 120fea5

Please sign in to comment.