1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-26 01:50:36 +00:00

Eclectic in 3D

This commit is contained in:
Zeno Rogue 2020-02-26 01:40:40 +01:00
parent d725c2b17c
commit b34df21540

View File

@ -3451,7 +3451,7 @@ EX bool bright;
// how much to darken // how much to darken
EX int getfd(cell *c) { EX int getfd(cell *c) {
if(bright) return 0; if(bright) return 0;
if(among(c->land, laAlchemist, laHell, laVariant) && WDIM == 2 && GDIM == 3) return 0; if(among(c->land, laAlchemist, laHell, laVariant, laEclectic) && WDIM == 2 && GDIM == 3) return 0;
switch(c->land) { switch(c->land) {
case laRedRock: case laRedRock:
case laReptile: case laReptile:
@ -3762,6 +3762,7 @@ EX int ceiling_category(cell *c) {
case laDual: case laDual:
case laWestWall: case laWestWall:
case laAsteroids: case laAsteroids:
case laEclectic:
return 1; return 1;
case laPower: case laPower: