From 448397ab1d40a8b77dc42a17800bf4350ff3eea6 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 29 May 2024 13:51:53 +0200 Subject: [PATCH] fixed Orb Energy orb desc and Air charges --- help.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/help.cpp b/help.cpp index 8935d53e..1d1437c8 100644 --- a/help.cpp +++ b/help.cpp @@ -546,10 +546,11 @@ EX string generateHelpForItem(eItem it) { if(among(it, itOrbMorph)) ac = 3; if(among(it, itOrbIllusion)) ac = 5; if(among(it, itOrbDragon)) ac = 5; + if(among(it, itOrbAir)) ac = 1; 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); + help += XLAT("\n\nActivation cost: %1 charges (reduced to %2 by %the3)\n", its(ac), its((1+ac)/2), itOrbEnergy); else help += XLAT("\n\nActivation cost: %1 charges\n", its(ac)); }