1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-20 13:02:10 +00:00

Raiders take pseudohept into account

This commit is contained in:
Zeno Rogue
2018-05-04 12:41:36 +02:00
parent 1c07230f88
commit 4bf892442f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ bool out_ruin(cell *c) {
eMonster genRuinMonster(cell *c) {
eMonster m = pick(moHexDemon, moHexDemon, moHexDemon, moAltDemon, moAltDemon, moMonk, moMonk, moSkeleton, moSkeleton, moCrusher);
if(m == moHexDemon && ctof(c))
if(m == moHexDemon && pseudohept(c))
return genRuinMonster(c);
if(m == moMonk) {
if(c->item) return genRuinMonster(c);