1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +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
EX int getfd(cell *c) {
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) {
case laRedRock:
case laReptile:
@ -3762,6 +3762,7 @@ EX int ceiling_category(cell *c) {
case laDual:
case laWestWall:
case laAsteroids:
case laEclectic:
return 1;
case laPower: