From c9ee75cdeaf85aa6f92945b6d4a94da83b484905 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 3 Feb 2022 01:05:41 +0100 Subject: [PATCH] Orb of Chaos is now forbidden in the Dungeon --- orbgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orbgen.cpp b/orbgen.cpp index 77051752..cd38dd43 100644 --- a/orbgen.cpp +++ b/orbgen.cpp @@ -401,7 +401,7 @@ EX eOrbLandRelation getOLR(eItem it, eLand l) { if(l == laDungeon) { if(it == itOrbSafety || it == itOrbFrog || it == itOrbTeleport || it == itOrbMatter || it == itOrbNature || - it == itOrbAether || it == itOrbSummon || it == itOrbStone) + it == itOrbAether || it == itOrbSummon || it == itOrbStone || it == itOrbChaos) return olrForbidden; }