1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-08 12:29:04 +00:00

implemented dual-subcubes and bch-subcubes variations

This commit is contained in:
Zeno Rogue
2021-07-07 18:26:03 +02:00
parent 415fe72329
commit 32a7f03360
5 changed files with 267 additions and 38 deletions

View File

@@ -421,6 +421,7 @@ EX pair<int, bool> fieldval(cell *c) {
EX int fieldval_uniq(cell *c) {
if(fake::in()) return FPIU(fieldval_uniq(c));
if(experimental) return 0;
if(reg3::in() && !PURE) return 0;
else if(arb::in()) return arb::id_of(c->master);
else if(hybri) {
auto c1 = hybrid::get_where(c).first;