Skip to content

Commit

Permalink
Add id display for add mutation cheat (#59992)
Browse files Browse the repository at this point in the history
  • Loading branch information
a666 authored Aug 7, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent edbbdaa commit df06cbf
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/wish.cpp
Original file line number Diff line number Diff line change
@@ -117,6 +117,19 @@ class wish_mutate_callback: public uilist_callback
mvwprintw( menu->window, point( startx, 3 ),
mdata.valid ? _( "Valid" ) : _( "Nonvalid" ) );

line2++;
mvwprintz(
menu->window,
point( startx, line2 ),
c_light_gray,
_( "Id:" )
);
mvwprintw(
menu->window,
point( startx + 11, line2 ),
mdata.id.str()
);

if( !mdata.prereqs.empty() ) {
line2++;
mvwprintz( menu->window, point( startx, line2 ), c_light_gray, _( "Prereqs:" ) );

0 comments on commit df06cbf

Please sign in to comment.