diff --git a/game.cpp b/game.cpp index 4b1a4aa1..f42c51de 100644 --- a/game.cpp +++ b/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; } diff --git a/help.cpp b/help.cpp index 4e23ec36..8ffb2087 100644 --- a/help.cpp +++ b/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; }