mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
fixed the trivial generation of Camelot in {even,x} tilings
This commit is contained in:
parent
32a5368241
commit
970d0c4699
@ -230,6 +230,9 @@ EX heptagon *createAlternateMap(cell *c, int rad, hstate firststate, int special
|
||||
if(!weirdhyperbolic && !(checkBarriersFront(bb) && checkBarriersBack(bb))) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int flip = 0;
|
||||
if(WDIM == 2 && S7 % 2 == 0) flip = hrand(2) ? 1 : -1;
|
||||
|
||||
// okay, let's go then!
|
||||
cellwalker bf(c, gdir);
|
||||
@ -237,6 +240,7 @@ EX heptagon *createAlternateMap(cell *c, int rad, hstate firststate, int special
|
||||
for(int i=0; i<rad; i++) {
|
||||
cx[i] = bf.at;
|
||||
bf += revstep;
|
||||
if(flip && hrand(2) == 0) { bf += flip; flip *= -1; }
|
||||
}
|
||||
cx[rad] = bf.at;
|
||||
heptagon *h = bf.at->master;
|
||||
|
Loading…
Reference in New Issue
Block a user