1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 14:37:16 +00:00

crystal:: Elemental Planes

This commit is contained in:
Zeno Rogue 2018-12-04 02:47:35 +01:00
parent 304e9373a9
commit 22c6f02cc9

View File

@ -882,6 +882,10 @@ void set_land(cell *c) {
setland(c, getCLand(gdiv(cv, 360)));
}
else if(specialland == laElementalWall) {
setland(c, eLand(laEFire + ((co1[0] / 240)&1?0:2) + ((co1[1] / 240)&1?0:1)));
}
if(specialland == laCamelot) {
setland(c, laCrossroads);
buildCamelot(c);