Skip to content

Commit

Permalink
Add reapply status to end of inventory description
Browse files Browse the repository at this point in the history
  • Loading branch information
flend committed Apr 21, 2020
1 parent c9dd7de commit 0582913
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/brogue/Items.c
Original file line number Diff line number Diff line change
Expand Up @@ -2396,6 +2396,12 @@ void itemDetails(char *buf, item *theItem) {
strcat(buf, buf2);
}
}
// re-apply status
if (theItem == rogue.lastItemApplied) {
sprintf(buf2, "This staff was the last staff used and may be re-applied.");
strcat(buf, "\n\n");
strcat(buf, buf2);
}
break;

case WAND:
Expand Down

0 comments on commit 0582913

Please sign in to comment.