mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-19 07:20:25 +00:00
ray:: increased gms_limit, and added CLI option -ray-hard
This commit is contained in:
parent
9c4a1d6d4e
commit
6a19ec2a85
@ -25,7 +25,7 @@ EX int want_use = 1;
|
|||||||
|
|
||||||
EX ld exp_start = 1, exp_decay_exp = 4, exp_decay_poly = 10;
|
EX ld exp_start = 1, exp_decay_exp = 4, exp_decay_poly = 10;
|
||||||
|
|
||||||
const int gms_limit = 84;
|
const int gms_limit = 110;
|
||||||
|
|
||||||
EX ld maxstep_sol = .05;
|
EX ld maxstep_sol = .05;
|
||||||
EX ld maxstep_nil = .1;
|
EX ld maxstep_nil = .1;
|
||||||
@ -1426,7 +1426,10 @@ int readArgs() {
|
|||||||
PHASEFROM(2);
|
PHASEFROM(2);
|
||||||
shift_arg_formula(exp_start);
|
shift_arg_formula(exp_start);
|
||||||
shift_arg_formula(exp_decay_current());
|
shift_arg_formula(exp_decay_current());
|
||||||
want_use = 1;
|
}
|
||||||
|
else if(argis("-ray-hard")) {
|
||||||
|
PHASEFROM(2);
|
||||||
|
shift_arg_formula(hard_limit);
|
||||||
}
|
}
|
||||||
else if(argis("-ray-out")) {
|
else if(argis("-ray-out")) {
|
||||||
PHASEFROM(2); shift(); color_out_of_range = arghex();
|
PHASEFROM(2); shift(); color_out_of_range = arghex();
|
||||||
|
Loading…
Reference in New Issue
Block a user