mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-01 03:39:16 +00:00
Avoid spurious "R'Lyeh is not what we are talking about now"
If you're following along with the tutorial, you'll still be in the Temple of Cthulhu when it tells you to go to the Burial Grounds. On your way there, you'll need to pass back through R'Lyeh, so we shouldn't warn you not to go there.
This commit is contained in:
parent
3003cda827
commit
1bd9381b73
2
tour.cpp
2
tour.cpp
@ -824,7 +824,7 @@ EX slide default_slides[] = {
|
||||
QUICKFIND {
|
||||
return (l == laBurial && !items[itOrbSword]);
|
||||
};
|
||||
SHOWLAND ( l == laCrossroads || l == laBurial );
|
||||
SHOWLAND ( l == laRlyeh || l == laCrossroads || l == laBurial );
|
||||
}
|
||||
},
|
||||
{pcg+"Periodic patterns", 30, LEGAL::UNLIMITED | USE_SLIDE_NAME,
|
||||
|
Loading…
Reference in New Issue
Block a user