mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-20 11:54:48 +00:00
fixed XLAT
This commit is contained in:
parent
dd95d8070c
commit
80b702ab76
6
help.cpp
6
help.cpp
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user