From 1485fae9ea2641201410b8ca3a1ff6a279e6d6a6 Mon Sep 17 00:00:00 2001 From: Sab Pyrope Date: Thu, 22 Aug 2024 12:18:00 +0800 Subject: [PATCH] Change effect desc --- src/item.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/item.cpp b/src/item.cpp index 3c6439650d30d..998b1c21638e2 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -3055,7 +3055,9 @@ void item::ammo_info( std::vector &info, const iteminfo_query *parts, std::vector fx; if( ammo.ammo_effects.count( ammo_effect_RECYCLED ) && parts->test( iteminfo_parts::AMMO_FX_RECYCLED ) ) { - fx.emplace_back( _( "This ammo has been hand-loaded." ) ); + fx.emplace_back( + _( "This ammo has been hand-loaded, " + "which resulted in slightly inferior performance compared to factory-produced ammo." ) ); } if( ammo.ammo_effects.count( ammo_effect_MATCHHEAD ) && parts->test( iteminfo_parts::AMMO_FX_BLACKPOWDER ) ) {