mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-06 17:41:04 +00:00
Fix blockseed for on_generated in mapgen env
This commit is contained in:
parent
a7a719261e
commit
02f40e5b0d
5 changed files with 8 additions and 5 deletions
|
@ -167,6 +167,7 @@ private:
|
|||
*/
|
||||
class Mapgen {
|
||||
public:
|
||||
// Seed used for noises (truncated from the map seed)
|
||||
s32 seed = 0;
|
||||
int water_level = 0;
|
||||
int mapgen_limit = 0;
|
||||
|
@ -180,6 +181,7 @@ public:
|
|||
EmergeParams *m_emerge = nullptr;
|
||||
const NodeDefManager *ndef = nullptr;
|
||||
|
||||
// Chunk-specific seed used to place ores and decorations
|
||||
u32 blockseed;
|
||||
s16 *heightmap = nullptr;
|
||||
biome_t *biomemap = nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue