mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
reptilecheat disables knights in Camelot
This commit is contained in:
parent
21a38293d0
commit
313bfa2829
@ -1575,7 +1575,7 @@ EX void buildCamelot(cell *c) {
|
|||||||
}
|
}
|
||||||
if(d == 1) {
|
if(d == 1) {
|
||||||
// roughly as many knights as table cells
|
// roughly as many knights as table cells
|
||||||
if(hrand(1000000) < 1000000 / expansion.get_growth())
|
if(hrand(1000000) < 1000000 / expansion.get_growth() && !reptilecheat)
|
||||||
c->monst = moKnight;
|
c->monst = moKnight;
|
||||||
if(!eubinary) for(int i=0; i<S7; i++) currentmap->generateAlts(c->master->move(i));
|
if(!eubinary) for(int i=0; i<S7; i++) currentmap->generateAlts(c->master->move(i));
|
||||||
for(int i=0; i<c->type; i++)
|
for(int i=0; i<c->type; i++)
|
||||||
|
Loading…
Reference in New Issue
Block a user