mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-27 14:37:16 +00:00
reduced the monster generation in the Hall of Mirrors while you are outside
This commit is contained in:
parent
560de6f9c6
commit
e77dfa7b56
@ -5310,7 +5310,7 @@ void setdist(cell *c, int d, cell *from) {
|
||||
c->wall = hrand(2) ? waMirror : waCloud;
|
||||
else if(ishept(c) && hrand(5000) < 10 * PRIZEMUL)
|
||||
placePrizeOrb(c);
|
||||
else if(hrand(600) < 8 + items[itShard] + hard) {
|
||||
else if(hrand(cwt.c->land == laMirror ? 600 : 2400) < 8 + items[itShard] + hard) {
|
||||
if(items[itShard] >= 5 && hrand(120) <= 20)
|
||||
c->monst = moMirrorSpirit;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user