From 7684355350981b7cd28a2d4858ae9552ea3eb4e9 Mon Sep 17 00:00:00 2001 From: k4gi Date: Sun, 30 Jan 2022 18:14:30 +1100 Subject: [PATCH] drop the item on the ground (#54930) --- src/crafting.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crafting.cpp b/src/crafting.cpp index 1474353e64ea1..8597001dc10cb 100644 --- a/src/crafting.cpp +++ b/src/crafting.cpp @@ -736,7 +736,7 @@ static item_location set_item_map_or_vehicle( const Character &p, const tripoint // Couldn't add the in progress craft to the target part, so drop it to the map. p.add_msg_player_or_npc( //~ %1$s: vehicle part name, %2$s: name of the item being placed - pgettext( "furniture, item", "Not enough space on the %1$s. You drop the %1$s on the ground." ), + pgettext( "furniture, item", "Not enough space on the %1$s. You drop the %2$s on the ground." ), pgettext( "furniture, item", "Not enough space on the %1$s. drops the %2$s on the ground." ), vp->part().name(), newit.tname() );