restricted some hints to full games

This commit is contained in:
Zeno Rogue 2020-08-02 02:34:23 +02:00
parent c97badc8c4
commit 716a774d1c
1 changed files with 3 additions and 3 deletions

View File

@ -54,7 +54,7 @@ EX hint hints[] = {
{
0,
[]() {
return !inv::on && geometry == gNormal && items[localTreasureType()] >= 18;
return !inv::on && items[localTreasureType()] >= 18 && in_full_game();
},
[]() {
dialog::addHelp(XLAT(
@ -98,7 +98,7 @@ EX hint hints[] = {
{
0,
[]() { return !inv::on; },
[]() { return !inv::on && in_full_game(); },
[]() {
dialog::addHelp(XLAT(
"Collecting 25 treasures in a given land may be dangerous, "
@ -119,7 +119,7 @@ EX hint hints[] = {
},
{
0,
[]() { return true; },
[]() { return in_full_game(); },
[]() {
dialog::addInfo(XLAT(
#if ISMOBILE