mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-09 12:16:45 +00:00
east values now shown only with -ceast
This commit is contained in:
parent
809a911998
commit
304e9373a9
@ -20,6 +20,7 @@ bool pure() {
|
||||
}
|
||||
|
||||
bool view_coordinates = false;
|
||||
bool view_east = false;
|
||||
|
||||
const int MAXDIM = 7;
|
||||
|
||||
@ -510,7 +511,7 @@ bool crystal_cell(cell *c, transmatrix V) {
|
||||
|
||||
if(geometry != gCrystal) return false;
|
||||
|
||||
if(view_coordinates && cheater) {
|
||||
if(view_east && cheater) {
|
||||
int d = dist_alt(c);
|
||||
queuestr(V, 0.3, its(d), 0xFFFFFF, 1);
|
||||
}
|
||||
@ -959,6 +960,9 @@ int readArgs() {
|
||||
else if(argis("-cview")) {
|
||||
view_coordinates = true;
|
||||
}
|
||||
else if(argis("-ceast")) {
|
||||
view_east = true;
|
||||
}
|
||||
else if(argis("-cprob")) {
|
||||
PHASEFROM(2); shift_arg_formula(compass_probability);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user