mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-22 18:53:12 +00:00
restricted some hints to full games
This commit is contained in:
parent
c97badc8c4
commit
716a774d1c
6
quit.cpp
6
quit.cpp
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user