From 8dc5caf63f4e4493525a356ecb8d693ea38f3ee3 Mon Sep 17 00:00:00 2001 From: David Seguin Date: Tue, 7 Dec 2021 01:51:22 -0500 Subject: [PATCH] Fix duplication of crafting components (#53220) --- src/craft_command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/craft_command.cpp b/src/craft_command.cpp index cd58262188fbf..a0fdba4865de9 100644 --- a/src/craft_command.cpp +++ b/src/craft_command.cpp @@ -280,7 +280,7 @@ static bool continue_prompt_liquids( const std::vector cont_not_empty = true; iname = tmp_i.tname( 1U, true ); } - crafter->i_add_or_drop( tmp_i, real_count ); + crafter->i_add_or_drop( tmp_i ); } if( cont_not_empty && !query_yn( liq_cont_msg, iname ) ) { return false;