mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 17:10:36 +00:00
Orb of Love no longer incresaes the displayed score in the Strange Challenge
This commit is contained in:
parent
c5468db000
commit
8f183b7afb
3
game.cpp
3
game.cpp
@ -300,6 +300,9 @@ int gold(int no) {
|
||||
#if CAP_INV
|
||||
if(inv::on && inv::remaining[itOrbLove])
|
||||
love = true;
|
||||
#endif
|
||||
#if CAP_DAILY
|
||||
if(daily::on) love = false;
|
||||
#endif
|
||||
if(love) i += 30;
|
||||
}
|
||||
|
6
help.cpp
6
help.cpp
@ -404,6 +404,12 @@ string generateHelpForItem(eItem it) {
|
||||
if(inv::on && it == itInventory)
|
||||
help += "\n\n" + XLAT(inv::helptext);
|
||||
#endif
|
||||
|
||||
#if CAP_DAILY
|
||||
if(daily::on && it == itOrbLove)
|
||||
help += "\n\n" + XLAT("The Orb of Love gives no bonus score in the Strange Challenge.");
|
||||
#endif
|
||||
|
||||
return help;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user