Orb of Chaos is now forbidden in the Dungeon

This commit is contained in:
Zeno Rogue 2022-02-03 01:05:41 +01:00
parent 0c20fdeccb
commit c9ee75cdea
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}