1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-09-07 21:16:48 +00:00

fixed grammar on 'activation cost: 1 charge'

This commit is contained in:
Zeno Rogue 2024-06-29 13:07:10 +02:00
parent 11c7d707f4
commit 91e4dcc2a0

View File

@ -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));
}