1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

Orb of Friendship no longer appears in Terracotta Army

This commit is contained in:
Jesse Ruderman 2021-06-27 09:52:52 -07:00
parent 2ef9268c01
commit 6ce9681497

View File

@ -394,6 +394,9 @@ EX eOrbLandRelation getOLR(eItem it, eLand l) {
it == itOrbAether || it == itOrbSummon || it == itOrbStone)
return olrForbidden;
}
if(l == laTerracotta && it == itOrbFriend)
return olrDangerous;
return olrPrize25;
}