diff --git a/content.cpp b/content.cpp index 22d7ced3..c62f9f04 100644 --- a/content.cpp +++ b/content.cpp @@ -1276,7 +1276,7 @@ LAND( 0x4040FF, "Crossroads III", laCrossroads3, ZERO, itHyperstone, RESERVED, "An alternate layout of the Crossroads. Great Walls cross here at right angles." ) NATIVE(0) - REQ(NUMBER(orbsUnlocked(), lands_for_hell(), XLAT("Finished lands required: %1 (collect %2 treasure)\n", "9", its(R10)))) + REQ(NUMBER(orbsUnlocked(), lands_for_cr3(), XLAT("Finished lands required: %1 (collect %2 treasure)\n", "9", its(R10)))) LAND( 0x4040C0, "Sea Border", laOceanWall, ZERO | LF_TECHNICAL | LF_SEA, itNone, RESERVED, "Border between seas.") // REQAS(laOcean,) diff --git a/help.cpp b/help.cpp index f640aeae..84adb1dc 100644 --- a/help.cpp +++ b/help.cpp @@ -240,7 +240,7 @@ EX void buildCredits() { "Kojiguchi Kazuki, baconcow, Alan, SurelyYouJest, hotdogPi, DivisionByZero, xXxWeedGokuxXx, jpystynen, Dmitry Marakasov, Alexandre Moine, Arthur O'Dwyer, " "Triple_Agent_AAA, bluetailedgnat, Allalinor, Shitford, KittyTac, Christopher King, KosGD, TravelDemon, Bubbles, rdococ, frozenlake, MagmaMcFry, " "Snakebird Priestess, roaringdragon2, Stopping Dog, bengineer8, Sir Light IJIJ, ShadeBlade, Saplou, shnourok, Ralith, madasa, 6% remaining, Chimera245, Remik Pi, alien foxcat thing, " - "Piotr Grochowski, Ann, still-flow, tyzone, Paradoxica, LottieRatWorld, aismallard, albatross, EncodedSpirit, Jacob Mandelson, CrashTuvai, cvoight, jennlbw, Kali Ranya, spiritbackup, Dylan, L_Lord" + "Piotr Grochowski, Ann, still-flow, tyzone, Paradoxica, LottieRatWorld, aismallard, albatross, EncodedSpirit, Jacob Mandelson, CrashTuvai, cvoight, jennlbw, Kali Ranya, spiritbackup, Dylan, L_Lord, AntiRogue" ); #ifdef EXTRALICENSE help += EXTRALICENSE; diff --git a/landlock.cpp b/landlock.cpp index a489f1f3..2b1f3147 100644 --- a/landlock.cpp +++ b/landlock.cpp @@ -184,6 +184,10 @@ EX int lands_for_hell() { return casual ? 40 : 9; } +EX int lands_for_cr3() { + return casual ? 20 : 9; + } + EX int variant_unlock_value() { return inv::on ? 75 : 30; }