Skip to content

Commit

Permalink
Replace occurences of 'wiki.minetest.net' with 'wiki.luanti.org'
Browse files Browse the repository at this point in the history
  • Loading branch information
veprogames authored Nov 17, 2024
1 parent 7295b6c commit a8ea165
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Table of Contents
Further documentation
----------------------
- Website: https://www.luanti.org/
- Wiki: https://wiki.minetest.net/
- Wiki: https://wiki.luanti.org/
- Forum: https://forum.luanti.org/
- GitHub: https://github.com/minetest/minetest/
- [Developer documentation](doc/developing/)
Expand Down
2 changes: 1 addition & 1 deletion builtin/mainmenu/settings/generate_from_settingtypes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ local minetest_example_header = [[
# to the program, eg. "luanti.exe --config ../minetest.conf.example".
# Further documentation:
# https://wiki.minetest.net/
# https://wiki.luanti.org/
]]

Expand Down
2 changes: 1 addition & 1 deletion doc/android.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ configuration file can usually be found at:
* After 5.4.2:
* `/sdcard/Android/data/net.minetest.minetest/` or `/storage/emulated/0/Android/data/net.minetest.minetest/` if stored on the device
* `/storage/emulated/(varying folder name)/Android/data/net.minetest.minetest/` if stored on the SD card
* [Learn more about Android directory](https://wiki.minetest.net/Accessing_Android_Data_Directory)
* [Learn more about Android directory](https://wiki.luanti.org/Accessing_Android_Data_Directory)

## Useful settings

Expand Down
2 changes: 1 addition & 1 deletion doc/developing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ Notable pages:

Oftentimes knowledge hasn't been written down (yet) and your best bet is to ask someone experienced and/or the core developers.

Feel free to join the [#minetest-dev IRC](https://wiki.minetest.net/IRC) and ask questions related to **engine development**.
Feel free to join the [#minetest-dev IRC](https://wiki.luanti.org/IRC) and ask questions related to **engine development**.
2 changes: 1 addition & 1 deletion minetest.conf.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# to the program, eg. "luanti.exe --config ../minetest.conf.example".

# Further documentation:
# https://wiki.minetest.net/
# https://wiki.luanti.org/

#
# Controls
Expand Down
4 changes: 2 additions & 2 deletions misc/net.minetest.minetest.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@
<url type="bugtracker">https://www.minetest.net/get-involved/#reporting-issues</url>
<url type="translate">https://dev.minetest.net/Translation</url>
<url type="donation">https://www.minetest.net/get-involved/#donate</url>
<url type="faq">https://wiki.minetest.net/FAQ</url>
<url type="help">https://wiki.minetest.net</url>
<url type="faq">https://wiki.luanti.org/FAQ</url>
<url type="help">https://wiki.luanti.org</url>
<url type="vcs-browser">https://github.com/minetest/minetest</url>
<url type="contribute">https://www.minetest.net/get-involved</url>

Expand Down
2 changes: 1 addition & 1 deletion src/server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4191,7 +4191,7 @@ ModStorageDatabase *Server::openModStorageDatabase(const std::string &world_path
warningstream << "/!\\ You are using the old mod storage files backend. "
<< "This backend is deprecated and may be removed in a future release /!\\"
<< std::endl << "Switching to SQLite3 is advised, "
<< "please read http://wiki.minetest.net/Database_backends." << std::endl;
<< "please read https://wiki.luanti.org/Database_backends." << std::endl;

return openModStorageDatabase(backend, world_path, world_mt);
}
Expand Down
4 changes: 2 additions & 2 deletions src/serverenvironment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -526,14 +526,14 @@ void ServerEnvironment::init()
warningstream << "/!\\ You are using old player file backend. "
<< "This backend is deprecated and will be removed in a future release /!\\"
<< std::endl << "Switching to SQLite3 or PostgreSQL is advised, "
<< "please read http://wiki.minetest.net/Database_backends." << std::endl;
<< "please read https://wiki.luanti.org/Database_backends." << std::endl;
}

if (auth_backend_name == "files") {
warningstream << "/!\\ You are using old auth file backend. "
<< "This backend is deprecated and will be removed in a future release /!\\"
<< std::endl << "Switching to SQLite3 is advised, "
<< "please read http://wiki.minetest.net/Database_backends." << std::endl;
<< "please read https://wiki.luanti.org/Database_backends." << std::endl;
}

m_player_database = openPlayerDatabase(player_backend_name, world_path, conf);
Expand Down

0 comments on commit a8ea165

Please sign in to comment.