From 91e4dcc2a04ff717205d773bd61597fd791994ab Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 29 Jun 2024 13:07:10 +0200 Subject: [PATCH] fixed grammar on 'activation cost: 1 charge' --- help.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/help.cpp b/help.cpp index 1d1437c8..382e06fa 100644 --- a/help.cpp +++ b/help.cpp @@ -551,6 +551,8 @@ EX string generateHelpForItem(eItem it) { if(ac) { if(items[itOrbEnergy]) help += XLAT("\n\nActivation cost: %1 charges (reduced to %2 by %the3)\n", its(ac), its((1+ac)/2), itOrbEnergy); + else if(ac == 1) + help += XLAT("\n\nActivation cost: 1 charge\n", its(ac)); else help += XLAT("\n\nActivation cost: %1 charges\n", its(ac)); }