1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

Mgfractal: Revert unnecessary duplication of parameters

This commit is contained in:
paramat 2015-11-14 09:18:01 +00:00
parent bdfb761dd0
commit cb7da90138
4 changed files with 60 additions and 138 deletions

View file

@ -37,16 +37,11 @@ struct MapgenFractalParams : public MapgenSpecificParams {
u32 spflags;
u16 formula;
u16 iterations;
v3f scale;
v3f offset;
float slice_w;
u16 m_iterations;
v3f m_scale;
v3f m_offset;
float m_slice_w;
u16 j_iterations;
v3f j_scale;
v3f j_offset;
float j_slice_w;
float julia_x;
float julia_y;
float julia_z;
@ -79,16 +74,11 @@ public:
v3s16 full_node_max;
u16 formula;
u16 iterations;
v3f scale;
v3f offset;
float slice_w;
u16 m_iterations;
v3f m_scale;
v3f m_offset;
float m_slice_w;
u16 j_iterations;
v3f j_scale;
v3f j_offset;
float j_slice_w;
float julia_x;
float julia_y;
float julia_z;