mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-18 03:04:48 +00:00
removed Lancers and PyroCultists from Camelot if getDistLimit is too low
This commit is contained in:
parent
5e7920784f
commit
5bf27db481
@ -1231,6 +1231,8 @@ void buildCamelot(cell *c) {
|
||||
c->monst = m[hrand(3)];
|
||||
if(c->monst == moHedge && VALENCE > 3)
|
||||
c->monst = moPyroCultist;
|
||||
if(getDistLimit() <= 2 && c->monst == moLancer) c->monst = moGoblin;
|
||||
if(getDistLimit() <= 3 && c->monst == moPyroCultist) c->monst = moCultist;
|
||||
}
|
||||
if(d == 1) {
|
||||
// roughly as many knights as table cells
|
||||
|
Loading…
Reference in New Issue
Block a user