1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

ray:: fixed export of exp_decay_exp and exp_decay_poly

This commit is contained in:
Zeno Rogue 2020-09-21 12:04:10 +02:00
parent fdcba734c9
commit 78757f4017

View File

@ -23,7 +23,9 @@ EX bool comparison_mode;
/** 0 - never use, 2 - always use, 1 = smart selection */
EX int want_use = 1;
EX ld exp_start = 1, exp_decay_exp = 4, exp_decay_poly = 10;
EX ld exp_start = 1;
EX ld exp_decay_exp = 4;
EX ld exp_decay_poly = 10;
const int gms_limit = 110;