diff options
author | sfan5 <sfan5@live.de> | 2017-11-07 14:20:45 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2017-11-07 14:20:50 +0100 |
commit | 12270dc094475e712080ad3a40eed696bb1d2f5a (patch) | |
tree | 9c2b0f45a984601accb65ecc3325ffa083688193 | |
parent | 415000e79744200badfad4a4b5228a8625dd5a3e (diff) |
Correct spelling of Minetest
-rw-r--r-- | WorldEdit API.md | 2 | ||||
-rw-r--r-- | worldedit_commands/init.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/WorldEdit API.md b/WorldEdit API.md index 8cee31b..9bcb4e8 100644 --- a/WorldEdit API.md +++ b/WorldEdit API.md @@ -193,7 +193,7 @@ Returns the number of nodes restored. Serialization
-------------
-Contained in serialization.lua, this module allows regions of nodes to be serialized and deserialized to formats suitable for use outside MineTest.
+Contained in serialization.lua, this module allows regions of nodes to be serialized and deserialized to formats suitable for use outside Minetest.
### version, extra_fields, content = worldedit.read_header(value)
diff --git a/worldedit_commands/init.lua b/worldedit_commands/init.lua index 07224c1..3640e0d 100644 --- a/worldedit_commands/init.lua +++ b/worldedit_commands/init.lua @@ -110,7 +110,7 @@ minetest.register_chatcommand("/about", { params = "",
description = "Get information about the mod",
func = function(name, param)
- worldedit.player_notify(name, "WorldEdit " .. worldedit.version_string .. " is available on this server. Type /help to get a list of commands, or get more information at https://github.com/Uberi/MineTest-WorldEdit/")
+ worldedit.player_notify(name, "WorldEdit " .. worldedit.version_string .. " is available on this server. Type /help to get a list of commands, or get more information at https://github.com/Uberi/Minetest-WorldEdit/")
end,
})
|