Skip to content

Commit

Permalink
Some tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma144 committed May 7, 2022
1 parent c03f192 commit f5a895d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Source/PuzzleList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -471,11 +471,11 @@ void PuzzleList::GenerateTreehouseN()
generator->generate(0x17DC7, Decoration::Star | Decoration::Color::Magenta, 6, Decoration::Dot_Intersection, 6, Decoration::Gap, 3);
generator->generate(0x17CE4, Decoration::Star | Decoration::Color::Magenta, 6, Decoration::Dot_Intersection, 6, Decoration::Gap, 3);
generator->setGridSize(5, 5);
generator->pathWidth = 0.8f;
generator->pathWidth = 0.84f;
generator->generate(0x17D2D, Decoration::Star | Decoration::Color::Magenta, 6, Decoration::Dot_Intersection, 9, Decoration::Gap, 8);
generator->pathWidth = 1;
generator->generate(0x17D6C, Decoration::Star | Decoration::Color::Magenta, 8, Decoration::Dot_Intersection, 9, Decoration::Gap, 5);
generator->removeFlag(Generate::Config::FullGaps);
generator->pathWidth = 1;
//Pink Bridge 2
generator->setGridSize(3, 3);
generator->generate(0x17D9B, Decoration::Star | Decoration::Color::Magenta, 4, Decoration::Stone | Decoration::Color::Black, 2, Decoration::Stone | Decoration::Color::White, 2);
Expand Down Expand Up @@ -865,7 +865,7 @@ void PuzzleList::GenerateCavesN()
generator->setFlag(Generate::Config::EnableFlash);
generator->generate(0x0A16B, Decoration::Dot_Intersection, 33);
generator->generate(0x0A2CE, Decoration::Dot_Intersection, 25, Decoration::Star | Decoration::Color::Black, 6, Decoration::Star | Decoration::Color::White, 2);
generator->generate(0x0A2D7, Decoration::Dot_Intersection, 25, Decoration::Triangle | Decoration::Color::Black, 4);
generator->generate(0x0A2D7, Decoration::Dot_Intersection, 25, Decoration::Star | Decoration::Color::Black, 1, Decoration::Star | Decoration::Color::White, 2, Decoration::Stone | Decoration::Color::Black, 2, Decoration::Stone | Decoration::Color::White, 1);
generator->generate(0x0A2DD, Decoration::Dot_Intersection, 25, Decoration::Poly | Decoration::Color::Black, 3);
generator->generate(0x0A2EA, Decoration::Dot_Intersection, 25, Decoration::Poly | Decoration::Can_Rotate | Decoration::Color::Black, 2);
generator->setSymbol(Decoration::Start, 0, 0); generator->setSymbol(Decoration::Start, 6, 6); generator->setSymbol(Decoration::Start, 0, 6);
Expand Down
2 changes: 1 addition & 1 deletion Source/Randomizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void Randomizer::GenerateHard(HWND loadingHandle) {
SetWindowText(loadingHandle, L"Done!");
if (!Special::hasBeenRandomized())
MessageBox(GetActiveWindow(), L"Hi there! Thanks for trying out Expert Mode. It will be tough, but I hope you have fun!\r\n\r\n"
L"Expert has some unique tricks up its sleeve. You will encounter some situations that may seem impossible at first (even in tutorial)! "
L"Expert has some unique tricks up its sleeve. You will encounter some situations that may seem impossible at first glance (even in tutorial)! "
L"In these situations, try to think of alternate approaches that weren't required in the base game.\r\n\r\n"
L"For especially tough puzzles, the Solver folder has a solver that works for most puzzles, though it occasionally fails to find a solution.\r\n\r\n"
L"The Github wiki also has a Hints page that can help with certain tricky puzzles.\r\n\r\n"
Expand Down

0 comments on commit f5a895d

Please sign in to comment.