@@ -1818,8 +1818,7 @@ static void modify_horde_func( tripoint_abs_omt &curs )
1818
1818
switch ( smenu.ret ) {
1819
1819
case 0 :
1820
1820
new_value = chosen_group.interest ;
1821
- if ( query_int ( new_value, false , _ ( " Set interest to what value? Currently %d" ),
1822
- chosen_group.interest ) ) {
1821
+ if ( query_int ( new_value, true , _ ( " Set interest to what value?" ) ) ) {
1823
1822
chosen_group.set_interest ( new_value );
1824
1823
}
1825
1824
break ;
@@ -1833,8 +1832,7 @@ static void modify_horde_func( tripoint_abs_omt &curs )
1833
1832
break ;
1834
1833
case 2 :
1835
1834
new_value = chosen_group.population ;
1836
- if ( query_int ( new_value, false , _ ( " Set population to what value? Currently %d" ),
1837
- chosen_group.population ) ) {
1835
+ if ( query_int ( new_value, true , _ ( " Set population to what value?" ) ) ) {
1838
1836
chosen_group.population = new_value;
1839
1837
}
1840
1838
break ;
@@ -1844,9 +1842,8 @@ static void modify_horde_func( tripoint_abs_omt &curs )
1844
1842
case 4 :
1845
1843
new_value = static_cast <int >( chosen_group.behaviour );
1846
1844
// Screw it we hardcode a popup, if you really want to use this you're welcome to improve it
1847
- popup ( _ ( " Set behavior to which enum value? Currently %d. \n Accepted values:\n 0 = none,\n 1 = city,\n 2=roam,\n 3=nemesis" ),
1848
- static_cast <int >( chosen_group.behaviour ) );
1849
- query_int ( new_value, false , " " );
1845
+ query_int ( new_value, true ,
1846
+ _ ( " Set behavior to which enum value?\n Accepted values:\n 0 = none,\n 1 = city,\n 2=roam,\n 3=nemesis" ) );
1850
1847
chosen_group.behaviour = static_cast <mongroup::horde_behaviour>( new_value );
1851
1848
break ;
1852
1849
case 5 :
0 commit comments