mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-24 06:50:09 +00:00
option disable_bigstuff for some experiments
This commit is contained in:
parent
aeb93f7e3f
commit
99f85aecfd
@ -15,6 +15,8 @@
|
||||
#include "hyper.h"
|
||||
namespace hr {
|
||||
|
||||
EX bool disable_bigstuff;
|
||||
|
||||
// horocycles
|
||||
|
||||
EX int newRoundTableRadius() {
|
||||
@ -1922,6 +1924,7 @@ EX void gen_temple(cell *c) {
|
||||
}
|
||||
|
||||
EX void moreBigStuff(cell *c) {
|
||||
if(disable_bigstuff) return;
|
||||
|
||||
if((bearsCamelot(c->land) && !euclid && !quotient && !nil) || c->land == laCamelot)
|
||||
if(have_alt(c)) if(!(bt::in() && specialland != laCamelot))
|
||||
|
@ -3569,6 +3569,7 @@ EX namespace windmap {
|
||||
}
|
||||
|
||||
EX void create() {
|
||||
if(disable_bigstuff) return;
|
||||
if(cgflags & qPORTALSPACE) return;
|
||||
samples.clear();
|
||||
neighbors.clear();
|
||||
|
@ -214,6 +214,7 @@ EX void initgame() {
|
||||
pregen();
|
||||
setdist(cwt.at, BARLEV, NULL);
|
||||
|
||||
if(!disable_bigstuff)
|
||||
if(isCyclic(specialland) || specialland == laCanvas) {
|
||||
#if CAP_COMPLEX2
|
||||
camelot::anthraxBonus = items[itHolyGrail];
|
||||
|
Loading…
x
Reference in New Issue
Block a user