mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-20 15:40:26 +00:00
fixed a possible crash due to validating lands in product without underlying space
This commit is contained in:
parent
0c048ea53b
commit
6e4b2c281f
@ -744,7 +744,9 @@ EX land_validity_t& land_validity(eLand l) {
|
||||
return lv::bad_graphics;
|
||||
if((hybrid::actual_geometry == gRotSpace || geometry == gRotSpace) && l == laDryForest)
|
||||
return lv::hedgehogs;
|
||||
if(hybri) return *PIU(&land_validity(l));
|
||||
if(hybri && hybrid::underlying && hybrid::underlying_cgip) {
|
||||
return *PIU(&land_validity(l));
|
||||
}
|
||||
}
|
||||
|
||||
#if !CAP_FIELD
|
||||
|
Loading…
Reference in New Issue
Block a user