From df06cbf2e2f2ca3e089fcd2c0254dc8f313f6180 Mon Sep 17 00:00:00 2001 From: a666 <19142162+a666@users.noreply.github.com> Date: Sun, 7 Aug 2022 09:40:37 -0500 Subject: [PATCH] Add id display for add mutation cheat (#59992) --- src/wish.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/wish.cpp b/src/wish.cpp index 31516ce308e80..a993d2d669e97 100644 --- a/src/wish.cpp +++ b/src/wish.cpp @@ -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:" ) );