fixed XLAT

This commit is contained in:
Zeno Rogue 2019-12-25 14:44:41 +01:00
parent dd95d8070c
commit 80b702ab76
1 changed files with 3 additions and 3 deletions

View File

@ -583,11 +583,11 @@ EX string generateHelpForMonster(eMonster m) {
if(m == moMutant) {
using namespace clearing;
if(direct)
s += XLAT("\n\nLeaves cut directly: " + its(direct));
s += XLAT("\n\nLeaves cut directly: %1", its(direct));
if(kills[moMutant])
s += XLAT("\n\nLeaves cut onscreen: " + its(kills[moMutant]));
s += XLAT("\n\nLeaves cut onscreen: %1", its(kills[moMutant]));
if(imputed.nonzero())
s += XLAT("\n\nLeaves cut offscreen (approximately): " + imputed.get_str(10000));
s += XLAT("\n\nLeaves cut offscreen (approximately): %1", imputed.get_str(10000));
}
if(m == moBat || m == moEagle)