mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-25 01:20:37 +00:00
fixed a bug in synt patterns
This commit is contained in:
parent
c42940684c
commit
4fa4f2061c
@ -489,7 +489,10 @@ void generate_floorshapes() {
|
|||||||
for(int i=0; i<2*synt::N + (nonbitrunc ? 0 : 2); i++) {
|
for(int i=0; i<2*synt::N + (nonbitrunc ? 0 : 2); i++) {
|
||||||
synt::id_of(&master) = i;
|
synt::id_of(&master) = i;
|
||||||
model.type = isize(synt::triangles[i]);
|
model.type = isize(synt::triangles[i]);
|
||||||
generate_floorshapes_for(i, &model, !synt::pseudohept(i), i/2);
|
if(geosupport_graveyard() == 2)
|
||||||
|
generate_floorshapes_for(i, &model, !synt::pseudohept(i), i/2);
|
||||||
|
else
|
||||||
|
generate_floorshapes_for(i, &model, 0, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user