diff --git a/src/item_contents.cpp b/src/item_contents.cpp index a06daf2ea81d4..30152916f14b5 100644 --- a/src/item_contents.cpp +++ b/src/item_contents.cpp @@ -1658,7 +1658,7 @@ units::volume item_contents::total_container_capacity( const bool unrestricted_p // item in it or is a pocket that has normal pickup disabled // instead of returning the volume return the volume of things contained if( pocket.volume_capacity() >= pocket_data::max_volume_for_container || - pocket.settings.is_disabled() || ( pocket.holster_full() ) ) { + pocket.settings.is_disabled() || pocket.holster_full() ) { total_vol += pocket.contains_volume(); } else { total_vol += pocket.volume_capacity();