Skip to content

Commit

Permalink
color indicated failure to drop items into vehicle space
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrikLundell committed Dec 24, 2023
1 parent 0600cfc commit f1fc9e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/activity_item_handling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ static void put_into_vehicle( Character &c, item_drop_reason reason, const std::
}
items_did_not_fit_count += it.count();
//~ %1$s is item name, %2$s is vehicle name, %3$s is vehicle part name
add_msg( _( "Unable to fit %1$s in the %2$s's %3$s." ), it.tname(), veh.name, part_name );
add_msg( m_mixed, _( "Unable to fit %1$s in the %2$s's %3$s." ), it.tname(), veh.name, part_name );
// Retain item in inventory if overflow not too large/heavy or wield if possible otherwise drop on the ground
if( c.can_pickVolume( it ) && c.can_pickWeight( it, !get_option<bool>( "DANGEROUS_PICKUPS" ) ) ) {
c.i_add( it );
Expand Down

0 comments on commit f1fc9e6

Please sign in to comment.