1
0
Fork 0
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:
sfan5 2024-07-22 16:31:46 +02:00 committed by GitHub
parent a7a719261e
commit 02f40e5b0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 8 additions and 5 deletions

View file

@ -35,6 +35,6 @@ public:
void on_mods_loaded();
void on_shutdown();
// Called after generating a piece of map before writing it to the map
void on_generated(BlockMakeData *bmdata);
// Called after generating a piece of map, before writing it to the map
void on_generated(BlockMakeData *bmdata, u32 seed);
};