diff --git a/README.md b/README.md index 326eedd87..9eecbfc19 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Further documentation ---------------------- - Website: https://www.minetest.net/ - Wiki: https://wiki.minetest.net/ -- Forum: https://forum.minetest.net/ +- Forum: https://forum.luanti.org/ - GitHub: https://github.com/minetest/minetest/ - [Developer documentation](doc/developing/) - [doc/](doc/) directory of source distribution diff --git a/builtin/mainmenu/content/dlg_package.lua b/builtin/mainmenu/content/dlg_package.lua index 4eb465236..a92b55ba9 100644 --- a/builtin/mainmenu/content/dlg_package.lua +++ b/builtin/mainmenu/content/dlg_package.lua @@ -52,7 +52,7 @@ local function get_formspec(data) end if info.forums then - info.forums = "https://forum.minetest.net/viewtopic.php?t=" .. info.forums + info.forums = "https://forum.luanti.org/viewtopic.php?t=" .. info.forums end assert(data.package.name == info.name) diff --git a/doc/direction.md b/doc/direction.md index b3ba5871a..85b44f57c 100644 --- a/doc/direction.md +++ b/doc/direction.md @@ -6,9 +6,9 @@ The long-term roadmaps, aims, and guiding philosophies are set out using the following documents: * [What is Minetest?](http://c55.me/blog/?p=1491) -* [celeron55's roadmap](https://forum.minetest.net/viewtopic.php?t=9177) +* [celeron55's roadmap](https://forum.luanti.org/viewtopic.php?t=9177) * [celeron55's comment in "A clear mission statement for Minetest is missing"](https://github.com/minetest/minetest/issues/3476#issuecomment-167399287) -* [Core developer to-do/wish lists](https://forum.minetest.net/viewforum.php?f=7) +* [Core developer to-do/wish lists](https://forum.luanti.org/viewforum.php?f=7) ## 2. Medium-term Roadmap diff --git a/src/mapgen/mapgen_valleys.cpp b/src/mapgen/mapgen_valleys.cpp index 4825ad754..196454642 100644 --- a/src/mapgen/mapgen_valleys.cpp +++ b/src/mapgen/mapgen_valleys.cpp @@ -5,7 +5,7 @@ Copyright (C) 2016-2019 Duane Robertson Copyright (C) 2016-2019 paramat Based on Valleys Mapgen by Gael de Sailly -(https://forum.minetest.net/viewtopic.php?f=9&t=11430) +(https://forum.luanti.org/viewtopic.php?f=9&t=11430) and mapgen_v7, mapgen_flat by kwolekr and paramat. Licensing changed by permission of Gael de Sailly. diff --git a/src/mapgen/mapgen_valleys.h b/src/mapgen/mapgen_valleys.h index 3f8266ecc..c0e3bd129 100644 --- a/src/mapgen/mapgen_valleys.h +++ b/src/mapgen/mapgen_valleys.h @@ -5,7 +5,7 @@ Copyright (C) 2016-2019 Duane Robertson Copyright (C) 2016-2019 paramat Based on Valleys Mapgen by Gael de Sailly -(https://forum.minetest.net/viewtopic.php?f=9&t=11430) +(https://forum.luanti.org/viewtopic.php?f=9&t=11430) and mapgen_v7, mapgen_flat by kwolekr and paramat. Licensing changed by permission of Gael de Sailly. diff --git a/src/porting.cpp b/src/porting.cpp index 93b410bcc..f0e2bee0b 100644 --- a/src/porting.cpp +++ b/src/porting.cpp @@ -932,7 +932,7 @@ double perf_freq = get_perf_freq(); * This appears to be a combination of unfortunate allocation order/fragmentation * and the fact that glibc does not call madvise(MADV_DONTNEED) on its own. * Some other allocators were also affected, jemalloc and musl libc were not. - * read more: + * read more: * * As a workaround we track freed memory coarsely and call malloc_trim() once a * certain amount is reached.