mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 13:07:16 +00:00
in eligibility, mark that leaderboards are separate
This commit is contained in:
parent
98831aff7e
commit
7a352ccf43
@ -10055,6 +10055,7 @@ S("light, camera, and objects always take the shortest path", "światło, kamera
|
||||
// achievement eligiblity
|
||||
S("achievement/leaderboard eligiblity:", "legalność osiągnięć i rankingów:")
|
||||
S("eligible for most", "większość legalna")
|
||||
S("eligible for most -- leaderboards separate", "większość legalna -- osobne rankingi")
|
||||
S("eligible for racing", "legalne dla wyścigu")
|
||||
S("eligible for shmup", "legalne dla strzelanki")
|
||||
S("eligible for multiplayer", "legalne dla wielu graczy")
|
||||
|
@ -385,8 +385,10 @@ EX void show_achievement_eligibility() {
|
||||
#if CAP_ACHIEVE
|
||||
dialog::addBreak(100);
|
||||
dialog::addInfo(XLAT("achievement/leaderboard eligiblity:"), 0xFF8000);
|
||||
if(!wrongMode(0))
|
||||
dialog::addInfo(XLAT("eligible for most"), 0x00FF00);
|
||||
if(!wrongMode(0)) {
|
||||
if(inv::on || bow::crossbow_mode()) dialog::addInfo(XLAT("eligible for most -- leaderboards separate"), 0x80FF00);
|
||||
else dialog::addInfo(XLAT("eligible for most"), 0x00FF00);
|
||||
}
|
||||
else if(!wrongMode(rg::racing))
|
||||
dialog::addInfo(XLAT("eligible for racing"), 0xFFFF00);
|
||||
else if(!wrongMode(rg::shmup))
|
||||
|
Loading…
Reference in New Issue
Block a user