1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 22:39:53 +00:00

rogueviz:: adjusted for param changes

This commit is contained in:
Zeno Rogue 2021-02-08 23:07:01 +01:00
parent 03a0cc2722
commit 90f3c562eb

View File

@ -145,10 +145,10 @@ bool sunflower_cell(cell *c, shiftmatrix V) {
} }
void insert_param() { void insert_param() {
params.insert({"sund", zdensity}); param_f(zdensity, "sund");
params.insert({"sunq", qty}); param_f(qty, "sunq");
params.insert({"sunr", range}); param_f(range, "sunr");
params.insert({"sunf", distance_per_rug}); param_f(distance_per_rug, "sunf");
} }
int readArgs() { int readArgs() {