mirror of
https://github.com/minetest/minetest.git
synced 2024-12-03 13:03:45 +01:00
Settings: Fix getNoiseParamsFromValue()
This commit is contained in:
parent
68c799bf99
commit
fcb1ea903f
@ -487,6 +487,7 @@ bool Settings::getNoiseParamsFromValue(const std::string &name,
|
||||
np.spread.X = stof(f.next(","));
|
||||
np.spread.Y = stof(f.next(","));
|
||||
np.spread.Z = stof(f.next(")"));
|
||||
f.next(",");
|
||||
np.seed = stoi(f.next(","));
|
||||
np.octaves = stoi(f.next(","));
|
||||
np.persist = stof(f.next(""));
|
||||
|
Loading…
Reference in New Issue
Block a user