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

Merge pull request #165 from jruderman/friend_terracotta

Orb of Friendship no longer appears in Terracotta Army
This commit is contained in:
Zeno Rogue 2021-06-28 20:54:57 +02:00 committed by GitHub
commit e486c87256
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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