diff --git a/README.md b/README.md index af691c1..75dd0ab 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Map Generator with Rivers -`mapgen_rivers v1.0` by Gaël de Sailly. +`mapgen_rivers v1.0.1` by Gaël de Sailly. Semi-procedural map generator for Minetest 5.x. It aims to create realistic and nice-looking landscapes for the game, focused on river networks. It is based on algorithms modelling water flow and river erosion at a broad scale, similar to some used by researchers in Earth Sciences. It is taking some inspiration from [Fastscape](https://github.com/fastscape-lem/fastscape). diff --git a/settings.lua b/settings.lua index f59eff8..87f26fd 100644 --- a/settings.lua +++ b/settings.lua @@ -1,7 +1,7 @@ local mtsettings = minetest.settings local mgrsettings = Settings(minetest.get_worldpath() .. '/mapgen_rivers.conf') -mapgen_rivers.version = "1.0" +mapgen_rivers.version = "1.0.1" local previous_version_mt = mtsettings:get("mapgen_rivers_version") or "0.0" local previous_version_mgr = mgrsettings:get("version") or "0.0"