mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-27 03:47:40 +00:00
Fix some more low-hanging translation bugs.
This commit is contained in:
4
help.cpp
4
help.cpp
@@ -495,11 +495,13 @@ EX string generateHelpForItem(eItem it) {
|
||||
for(auto& oi: orbinfos) {
|
||||
if(treasureType(oi.l) == it) {
|
||||
if(oi.gchance > 0) {
|
||||
help += "\n\n";
|
||||
help += XLAT("\n\nOrb unlocked: %1", oi.orb);
|
||||
describeOrb(help, oi);
|
||||
}
|
||||
else if(oi.l == cwt.at->land || inv::on) {
|
||||
help += XLAT("\n\nSecondary orb: %1", oi.orb);
|
||||
help += "\n\n";
|
||||
help += XLAT("Secondary orb: %1", oi.orb);
|
||||
describeOrb(help, oi);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user